Mega Code Archive

 
Categories / Java / JSP
 

Using Operators

<HTML>   <HEAD>     <TITLE>Using Operators</TITLE>   </HEAD>   <BODY>     <H1>Using Operators</H1>     <%         int operand1 = 23, operand2 = 4, product;         product = operand1 * operand2;         out.println(operand1 + " * " + operand2 +             " = " + product);      %>   </BODY> </HTML>