填空题 请写出下面程序的输出结果: 1 class J_Test { public static void main(String args[]) { int a=1,b=2; if((a==0)&(++b==6))//注:这种写法不符合编程规范 a=100; System.out.println(a+b); }/ /方法main结束 }/ /类J _Test结束
  • 1、
【正确答案】 1、4    
【答案解析】