MCPcopy Create free account
hub / github.com/codemistic/Data-Structures-and-Algorithms / main

Method main

Java/Recursion/FactorialN.java:23–32  ·  view source on GitHub ↗
(String args[])

Source from the content-addressed store, hash-verified

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}

Callers

nothing calls this directly

Calls 1

fctMethod · 0.95

Tested by

no test coverage detected