阅读以下程序:#include main(){ int x;scanf("%d",&x);if(x--<5)printf("%d",x);else printf("%d",x++);}程序运行后,如果从键盘输入5,则输出结果是()。
查看答案
两次运行下面的程序,如果从键盘上分别输入6和4,则输出的结果是()。#include main( ){ int x;scanf("%d",&x);if(x++>5)printf("%d",x);else printf("%d\n",x--);}
A. 7和5
B. 6和3
C. 7和4
D. 6和4
3、若有定义:float x=1.5;int a=1,b=3,c=2;则正确的switch语句是( )。
A. switch(a+b){ case 1: printf("*\n");case 2+1: printf("**\n"); }
B. switch((int)x);{ case 1: printf("*\n");case 2: printf("**\n"); }
C. switch(x){ case 1.0: printf("*\n");case 2.0: printf("**\n"); }
D. switch(a+b){ case 1: printf("*\n");case c: printf("**\n"); }
4、以下各选项中的代码段执行后,变量y的值不为1的是()。
A. int x=5,y=0; if(5) y=1;
B. int x=5,y=0; if(x) y=1;
C. int x=10,y=0; if(x=y) y=1;
D. int x=5,y=10; if(x=y) y=1;
7、有以下程序#include main(){ int x=1, y=0,a=0,b=0;switch( x ){ case 1: switch ( y ){ case 0: a++; break;case 1: b++; break;}case 2: a++; b++; break;}printf("a=%d,b=%d\n",a,b );}程序运行后的输出结果是
A. a=1,b=0
B. a=1,b=1
C. a=2,b=1
D. a=2,b=2