Computer Science, asked by sumaiya6694, 1 month ago

do a java programme to find out their sum, product and Subtraction of 53, 55, 65​

Answers

Answered by DeblinaDutta
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