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
Java Applet Notes
Category: NotesJuly 16, 2022
Calibration of Energy Meter
Category: Practical FilesJuly 16, 2022
Tower of Hanoi Iterative C
Category: Practical FilesJuly 17, 2022
Optics by Ajoy Ghatak
Category: eBooksJuly 16, 2022
IPU Introduction to Programming (ITP) Notes Full Semester
Category: NotesJuly 16, 2022
Circuits and Systems Practical File
Category: Practical FilesJuly 16, 2022
Power Electronics Complete Notes
Category: NotesJuly 17, 2022
Data Mining Practical File Exp-8-11
Category: Practical FilesJuly 16, 2022
Complete Notes Printed
Category: NotesJuly 16, 2022
Foundation of Computer Science Notes PDF
Category: NotesJuly 16, 2022