Finding a Factorial using while loop

In this example we are going to find out the factorial
of 12 by using the while loop. In while loop the loop will run until the
condition we have given gets true. We are using the scriptlet to
calculate the factorial of 12. In the scriptlet we generally writes a java logic
in it. The output will be displayed by using the out implicit object used
to write the content on the browser.
We can find a factorial of a number by using the temp
variable which will help us to calculate the factorial of a number. Take one
variable factorial of int type and initialize it as 1. Take another
variable value of type int of which you want to calculate the factorial
.Now use while loop and pass the condition that until temp> 0, the loop
should perform the following task: the factorial = factorial* temp and
keep on decreasing the value of temp by l.
<HTML>
<HEAD>
<TITLE>Finding a Factorial using while loop</TITLE>
</HEAD>
<BODY>
<font size="6" color ="#000080">Finding a Factorial using while loop</font><br>
<%
int value = 12, factorial = 1, temp = value;
while (temp > 0) {
factorial *= temp;
temp--;
}
out.println("The factorial of " + value + " is " + factorial + ".");
%>
</BODY>
</HTML>
|
The output of the program is given below:


|
Current Comments
6 comments so far (post your own) View All Comments Latest 10 Comments:very good . very helpful for the biginers.
please send me the tutorials with sample programs. both jsp and ejb
thanking u.
ben
Posted by Bens on Monday, 10.8.07 @ 22:17pm | #32525
very nice make...
give more download options.. very helpful for beginers..
thankyou
benny
Posted by Benny Michael on Monday, 10.8.07 @ 22:11pm | #32524
Excelent coding. Easy for beginares
Posted by simmy on Sunday, 07.15.07 @ 22:52pm | #21342
Absolutely gr8 way to make beginners familiar abt JSP.
Posted by Raja on Tuesday, 03.13.07 @ 13:06pm | #11569
The tutorial is simply good and is very useful for the beginners.
Posted by sireesha on Thursday, 02.15.07 @ 20:20pm | #7982
please send me jsp each every programming on the basis of application programming
Posted by azhar on Wednesday, 01.31.07 @ 18:27pm | #4944