Java Program to Find Factorial of a Number
Factorial.txt
File size: 600 Bytes
File content type: text/plain
Category: Practical Files
Subject: Java Programming
/**
*
* @program To print Factorial of a number
* Example: 5! = 1*2*3*4*5
*/
import java.io.*;
public class Factorial {
public static void main(String args[]) throws IOException {
BufferedReader obj = new BufferedReader(new InputStreamReader(System.in));
System.out.println("Enter number");
int num = Integer.parseInt(obj.readLine());
long factorial = 1;
for(int i = 2 ; i <= num ; i++) {
factorial = factorial*i;
}
System.out.println("Factorial of "+ num +" = "+ factorial);
}
}
Sample Input/Output
Enter number
8
Factorial of 8 = 40320
Factorial Program in Java
Last Updated: July 16, 2022
Related
FOC File PDF
Category: Practical FilesJuly 16, 2022
P K Sinha FOC notes chapter 1-10
Category: eBooksJuly 16, 2022
Engineering Graphics Viva Questions PDF
Category: NotesJuly 16, 2022
Communication System Aakash
Category: Practical FilesJuly 16, 2022
Productions and Operations Management Notes Unit 4
Category: NotesJuly 17, 2022
IPU ECE 6th Sem Syllabus
Category: SyllabusJuly 17, 2022
Marketing Management Notes PDF Unit 2
Category: NotesJuly 17, 2022
IPU Cost Accounting Notes Unit 2
Category: NotesJuly 17, 2022
Sales Distribution Management Notes Unit 2
Category: NotesJuly 17, 2022
EHVACDC Unit 1
Category: NotesJuly 17, 2022