Computer Science, asked by ranjitkaur67847, 11 months ago

solve the program to enter any two number their sum , product and the difference in computer​

Answers

Answered by harishu2005
0

Answer:

Explanation:

class abc

{

public static void main (int x,int y)

{

int a=x+y;

int b=x-y;

int c=x*y;

int d=x/y;

System.out.println ("the answer is"+a+b+c+d);

}

}

Similar questions