(1) int x=10, y=20, z=100;
System.out.println (x/y*(z%(x*y)));
(2) int m=5, n=3, q=6;
m+=n*q/m;
System.out.println (m+"\n"+n+"\n"+q);
3. int p=110, q= 150, r=200;
System.out.println (p<=q && (q+5)==r);
System.out.println (!(r%(q-50)==0));
Answers
Answered by
2
Answer:
1) 10/20*100%10*20=100
2) 3.6
3) 0
0.5
Similar questions
Math,
21 days ago
Social Sciences,
21 days ago
English,
21 days ago
English,
1 month ago
English,
9 months ago
Math,
9 months ago
Social Sciences,
9 months ago