以下代码的输出结果是()。(单选题)publicclassTest{publicstaticvoidmain(String[]args){double[]price=newdouble[5];price[0]=98.10;price[1]=32.18;price[2]=77.75;System.out.print((int)price[0]+""+(int)price[1]+""+(int)price[2]+""+(int)price[3]+""+(int)price[4]);}}
A. 98 32 77 0 0
B. 98 32 78 0 0
C. 98 32 78
D. 编译出错
若year=2016,则下列语句的输出结果是( )(单选题)if((year%4==0&&year%100!=0)||year%400==0)System.out.println("leapyear");elseSystem.out.println("commonyear");
A. 输出“common year”
B. 输出“leap year”
C. 输出“null”
D. 无输出
如下程序的运行后,则z的值变成多少?()intx=8,y=10;floatz;switch(x%y){case0:z=x*y;break;case8:z=x/y;break;case1:z=x-y;break;default:z=0;break;}
A. 80
B. 0.8
C. -2
D. 0.0
以下程序输出的结果是(单选题)if(!(4>1)&&8-1>2)System.out.println("你好!");
A. 0
B. 什么都没有输出
C. 输出一个“你好”
D. 输出三个“你好”