1.  >>  高等继续教育 / Java程序设计
 高等继续教育 / Java程序设计
正确率:推荐%

题型描述: 编程题

读下面程序,给出最后屏幕输出结果。

public class ShiftTest{

public static void main(String [] args){

       int x=0x80000000;      

       int y=0x80000000;

       x=x>>1;                      

       y=y>>>1;

      System.out.println(0x80000000>>1 = + Integer.toHexString(x));

      System.out.println(0x80000000>>>1 = + Integer.toHexString(y));

}


  积分
 参考答案:
 佳题速递: