Program to find factorial of number

Java program to find factorial of number

public class Factorial {

    public static void main(String[] args) {

        int num = 10;
        long factorial = 1;
        for(int i = 1; i <= num; ++i)
        {
       
            factorial *= i;
        }
        System.out.printf("Factorial of %d = %d", num, factorial);
    }

}

Comments

Popular posts from this blog

Java Variables and Datatype

JAVA Features

Java Fundamentals