Program To find the Factorial Number Unknown 06:56 Program To find the Factorial Number public class FactorialNum { public static void main(String args[]) { int n=5,a=1; for(int i=1;i<=n;i++) { a=a*i; } System.out.println(a); } } Share this Share on FacebookTweet on TwitterPlus on Google+ Related Posts Program To find the Factorial NumberTo Design a class to implement multiple inheritanceConvert integer to word using java ProgramFind the Largest of 3 Numbers using Swings ConceptVBA developer Swap Two Numbers without using a Third variable in java