1.写出结果。
- class Demo
- {
- public static void main(String[] args)
- {
- int x=0,y=1;
- if(++x==y--&x++==1||--y==0)
- System.out.println("x="+x+",y="+y);
- else
- System.out.println("y="+y+",x="+x);
- }
- }
复制代码
2.写出结果。
- public class Demo2
- {
- public static void main(String []args)
- {
- int i = 0, j = 5;
- tp: for (;;)
- {
- i++;
- for(;;)
- {
- if(i > j--)
- break tp;
- }
- }
- System.out.println("i = " + i + ", j = "+ j);
- }
- }
复制代码
3.写出结果。
- public class Test
- {
- public static void leftshift(int i, int j)
- {
- i+=j;
- }
- public static void main(String args[])
- {
- int i = 4, j = 2;
- leftshift(i, j);
- System.out.println(i);
- }
- }
复制代码
|
|