What is the result of running the following code?

int a = 7;
int b = 4;

System.out.println(-a % b);
System.out.println(a % -b);
System.out.println((-a % b) == (a % -b));    
Explanation
Operator % returns result with the sign of first operand. Sign of second operand is ignored.

Следи за CodeGalaxy

Мобильное приложение Beta

Get it on Google Play
Обратная Связь
Продолжайте изучать
тесты по Java
Cosmo
Зарегистрируйся сейчас
или Подпишись на будущие тесты