What will be the result of compilation and execution of the following code?
public class Main {
static int a, b;
public static void main(String[] args) {
if (!(++a==0 && ++b==0)) System.out.print("true a+b=");
else System.out.print("false a+b=");
System.out.print(a + b);
}
}
Ввійдіть щоб вподобати
Ввійдіть щоб прокоментувати