write the output int a =175
a%15
system.out.println("a="+a)
Answers
Answered by
0
Answer:
system.out.println("a="+a)
output - a=10
Explanation:
The modulus operator returns the remainder of the two numbers after division. If you are provided with two numbers, say, X and Y, X is the dividend and Y is the divisor, X mod Y is there a remainder of the division of X by Y.
Similar questions