Java Programming Sample – To calculate the factorial of a number
Java Programming Sample
The programming example is about how to calculate the factorial of a number
Java Factorial Example
This Java Factorial Example shows how to calculate factorial of a given number using Java.
public class NumberFactorial {
public static void main(String[] args) {
int number = 5;
/*
* Factorial of any number is !n.
* For example, factorial of 4 is 4*3*2*1.
*/
int factorial = number;
for(int i =(number – 1); i > 1; i–)
{
factorial = factorial * i;
}
System.out.println(“Factorial of a number is ” + factorial);
}
}
/*
Output of the Factorial program would be
Factorial of a number is 120
*/
For more details you can visit our websites at https://www.helpwithassignment.com/programing-assignment-help and http://www.helpwiththesis.com
Book Your Assignment
Recent Posts
How Students Can Use AI to Enhance Their Grades?
Read MoreA Comprehensive Guide on How to Write a Business Plan
Read MoreHow To Write A Thesis Statement?
Read MoreA Comprehensive Guide: Crafting an Effective Dissertation Methodology
Read MoreA Quick Guide To Harvard Referencing
Read MoreGet assignment help from subject matter experts!
4.7/5 rating | 10,000+ happy students | Great tutors 24/7