1. int x = 8;
float y= x++ * ++X - ++x + X++;
2. int a=10, b=15;
int c= 25/ a++ / b++ - b-- / a--;
3. float d= 5.4f, e=2.0f;
e - = d++ / e++ - ++e * ++d;
4. int a=25, b=30, c=4;
a*= ++a % -- + --C+b++ * --C* -a;
5. int a=4,b,c;
b=a;
C= 8*--b + ++a*a++ / --a % --b;
6. double y= 47.2, x;
x/= y++ - 9% ++y*-8;
7. int g= 'y', r= 'X';
r+= ++r* --g+ ++r + g++;
8. int a= 200,b =30;
System.out.print(++a*3==b++*b);
9. int a=2,b=3,c=8;
c- = ++c + --b*c++ - --a/--a;
10. int y = 258,z =89,m;
m= ++y + ++y%++z+-y;
answers
1. 80.0f
2. -1
3. 28.9f
4. -19400
5. 25
6. compilation error
7. 14880
8. false
9. runtime error
10. 79
I just need to know the solutions the answers are given in the list please help me solve this
Answers
Answered by
0
Answer:
l can't understand this
Similar questions
Math,
4 months ago
Math,
4 months ago
Social Sciences,
9 months ago
Math,
1 year ago
Math,
1 year ago