do a java programme to find out their sum, product and Subtraction of 53, 55, 65
Answers
Answered by
0
Explanation:
public class question
{
public static void main ()
{
int a = 53 ;
int b = 55;
int c = 65;
double sum = a+ b + c;
double product = a*b*c;
double subtraction = a-b-c;
System.out.println(" sum = "+sum);
System.out.println("product = "+product);
System.out.println("subtraction = "+subtraction);
}
}
Similar questions