Added indentation in the "main" function statement block
This commit is contained in:
parent
f44f2c176b
commit
f6d67253e3
@ -3,11 +3,11 @@ import java.util.*; //for importing scanner
|
||||
|
||||
public class Factorial {
|
||||
public static void main(String[] args) { //main method
|
||||
int n = 1;
|
||||
Scanner sc= new Scanner(System.in);
|
||||
System.out.println("Enter Number");
|
||||
n=sc.nextInt();
|
||||
System.out.println(n + "! = " + factorial(n));
|
||||
int n = 1;
|
||||
Scanner sc= new Scanner(System.in);
|
||||
System.out.println("Enter Number");
|
||||
n=sc.nextInt();
|
||||
System.out.println(n + "! = " + factorial(n));
|
||||
}
|
||||
|
||||
//Factorial = n! = n1 * (n-1) * (n-2)*...1
|
||||
|
Loading…
Reference in New Issue
Block a user