0
int x=48,y=13; z=y++*5/x++ +y
Please help me with this basic program
3 Answers
+ 2
int x=48,y=13;
int z=y++*5/x++ +y;
// z = 13*5/48 +14
// z = 65/48 + 14
// z = 1 + 14
System.out.print(z); // 15
0
Thanks
0
Int x=48;
x= 2+ ++x
Please help me with this basic program