Java Program - MUL Of Two Number



class multi
{
public static void main(String args[])
{
int a = 114;
int b = 2;
int c = a * b;

System.out.println("Multiplication of two numbers is = "+c);

}
}


Output-

"add of two numbers is = 228"

No comments:

Post a Comment