Step by step learning
What will be in the output?
int a = 14; int b = a % 4; System.out.println("14 % 4 is " + b);
14 % 4 is 3
14 % 4 is 2
14 % 4 is 1
Please log in or register to have a possibility to add comment.
Please log in or register to have a possibility to add comment.