It is very easy to find sum and product of two numbers in java. First of all we must take two numbers from user and then we will add and multiply these numbers. Lets see how, it is
import java.util.*;
class sumproduct
{
public static void main (String args[])
{
Scanner in = new Scanner (System.in);
int a,b,s,p;
System.out.print ("\n\t Enter first number = ");
a=in.nextInt();
System.out.print ("\n\t Enter second number = ");
b=in.nextInt();
s=a+b;
p=a*b;
System.out.print ("\n\t sum = "+s);
System.out.print ("\n\t product = "+p);
}
}
Note:
After we have the numbers, take two variables for sum and product. As we have s and p in this program.
import java.util.*;
class sumproduct
{
public static void main (String args[])
{
Scanner in = new Scanner (System.in);
int a,b,s,p;
System.out.print ("\n\t Enter first number = ");
a=in.nextInt();
System.out.print ("\n\t Enter second number = ");
b=in.nextInt();
s=a+b;
p=a*b;
System.out.print ("\n\t sum = "+s);
System.out.print ("\n\t product = "+p);
}
}
Note:
After we have the numbers, take two variables for sum and product. As we have s and p in this program.