(String args[])
| 21 | } |
| 22 | */ |
| 23 | public static void main(String args[]) |
| 24 | { |
| 25 | Scanner I = new Scanner(System.in); |
| 26 | System.out.println("Enter A Number"); |
| 27 | int n = I.nextInt(); |
| 28 | f = 1; |
| 29 | fct(n); |
| 30 | System.out.println("Your factorial is: " + f); |
| 31 | I.close(); |
| 32 | } |
| 33 | } |