问题详情

给出以下代码,请问该程序的运行结果是( )。 class Example { public static void main (String args[]) { try { byte x = -127; byte y = (byte)(x>>9); System.out.println(y); }catch(Exception e){ System.out.println("Exception"); } } }


A、-1

B、Exception

C、1

时间:2021-07-17 17:50 关键词:

答案解析

A