You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
333 B
Java

class FactorialExample
{
public static void main(String args[])
{
int i,fact=1;
int number=5;//It is the number to calculate factorial
for(i=1; i<=number; i++)
{
fact=fact*i;
}
System.out.println("Factorial of "+number+" is: "+fact);
}
}