单项选择题
有以下程序: #include<stdio.h> main() { int x=8; for(;x>0;x--) { if(x%3) {printf("%d,",x--);continue;} printf("%d,",--x); } } 程序的运行结果是______。
A.7,4,2
B.8,7,5,2
C.9,7,6,4
D.8,5,4,2
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
有以下程序: #define P 3 void F(int x){return(P*x*x);} main() {printf( %d n ,F(3+5));} 程序运行后的输出结果是______。
A.192
B.29
C.25
D.编译出错
点击查看答案&解析
单项选择题
设有如下三个关系表: 下列操作中正确的是______。
A.T=R∩S
B.T=R∪S
C.T=R×S
D.T=R/S
点击查看答案&解析
相关试题
有以下程序: #include<stdio.h> voi...
有以下程序: #include<stdio.h> mai...
有以下程序: #include<stdio.h> #i...
有以下程序: #include<string.h> ma...
在E-R图中,用来表示实体的图形是____...