已知intx=1,y=2,z;则执行:z=x>y?++x:++y;,则z的值是()。
查看答案
执行语句:printf("|%10.5f|\n",12345.678);的输出是()
A. |2345.67800|
B. |12345.6780|
C. |12345.67800|
D. |12345.678|
程序段intx=3,a=1;switch(x) {case4:a++;case3:a++;case2:a++;case1:a++;}printf("%d",a);的输出结果是()。
A. 1
B. 2
C. 3
D. 4
程序段intx=5,y=8,max;max=(x>y)?x:y;printf("%d",max);的输出结果是( )。
A. 5
B. 8
C. 3
D. 13
以下程序的运行结果是________。#include ”stdio.h”main(){ int a,b,c,s,w,t;s=w=t=0;a= -1; b=3; c=3;if (c>0) s=a+b;if (a<=0){ if (b>0)if (c<=0) w=a-b;}else if (c>0) w=a-b;else t=c;printf(”%d %d %d”, s,w,t);}