Midpoint of two number
While solving any mathematical problem it
becomes important to find the number that is exactly between two numbers.
In this example we are finding a midpoint of two
numbers by using the while loop.
The code of the program is given below:
<HTML>
<HEAD>
<TITLE>Midpoint of two number </TITLE>
</HEAD>
<BODY>
<table align= "left" border="1" bgcolor="#FFFFCC">
<H1>Midpoint of two number </H1>
<tr>
<td>
<%
short a,b;
a=250;
b=500;
while(++a < --b);
out.println("Midpoint is "+a);
%>
</td>
</tr>
</table>
</BODY>
</HTML>
|
Output of the Program:

Download this example.
|