write a java program to make different types of calculations addition subtraction multiplication division
Answers
Answered by
0
Explanation:
class Calc{
public void display (){
int a = 2
int b = 3
int c =4
d = a+b
e = b-a
f = b*c
g = b÷c
System.out.println ( d , e , f ,g )
}
}
Similar questions