Find output:
int a = 5, b = 10,
If (a>b)
C= ++a + b + a/2 + a;
C = -b + ++ + b/3 +b;
System.out.printin ("value of c="+c);
Answers
Answered by
1
Answer:
Find output:
int a = 5, b = 10,
If (a>b)
C= ++a + b + a/2 + a;
C = -b + ++ + b/3 +b;
System.out.printin ("value of c="+c);
the correct answer is 12
Similar questions