evaluate the given expression. int a=4, b=2, c=8; System.out.println(a+b*c%a) ; System.out.println(a+b/c+a); System.out.println(a%b+b%c+b/a+c/b) ;
Answers
Answered by
3
Answer:
4
8
4
Explanation:
* is the first priority so, b*c will execute first. after that % executes
Similar questions