多选题
Given:
public class ArithmeticResultsOutput
{
public static void main(String[] args) {
int
i = 0;
int j = 0;
if(i++ == ++j)
System.out.println("True: i="+i+"'j="+j);
} else
{
System.out.println("False: i="+i+"'j="+j);
}
}
}
What will be printed to
standard out?
- A. True: i=0, j=1
- B. True: i=1, j=1
- C. False: i=0, j=1
- D. False: i=1, j=1