JSP: Utilisation des opérateurs de calcul*

Author:
<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>
 
           
       

Cet article JSP: Utilisation des opérateurs de calcul* est apparu en premier sur .