int a=3; b = 5;
int c = b++ * 6+ ++a/3;
System.out.println(x);
Answers
Answered by
0
Explanation:
a=3
b=5
c=7
a+6
3+6=9
9/3=3
Similar questions