JSP Java


  
    Using Operators
  
  
    

Using Operators


    <%
        int operand1 = 23, operand2 = 4, product;
        product = operand1 * operand2;
        out.println(operand1 + " * " + operand2 +
            " = " + product);
     %>