The Help With Assignment Blog is intended to provide with tips and tricks to students so that they are able to do better at school and college. The Blog is associated with HelpWithAssignment.com (HwA), a leading provider of online tuitions in University subjects.

Friday, September 2, 2011

Java Programming Example

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 http://www.helpwithassignment.com/programing-assignment-help and http://www.helpwiththesis.com

No comments: