以下代码中,最后x的值不是5的是哪一项?( )
A: x=1; while(x<5) { printf("%d\n",x); x++; }
B: x=1; while(x<=5) { printf("%d\n",x); x++; }
C: x=1; do { printf("%d\n",x); x++; }while(x<5);
D: x=10; for( ;x>=6; x--) printf("%d\n",x);
A: x=1; while(x<5) { printf("%d\n",x); x++; }
B: x=1; while(x<=5) { printf("%d\n",x); x++; }
C: x=1; do { printf("%d\n",x); x++; }while(x<5);
D: x=10; for( ;x>=6; x--) printf("%d\n",x);
举一反三
- 设int x=1,n;,以下与其他三组输出结果不同的一组语句是______。 A: x++; printf("%d\n",x); B: n=++x; printf("%d\n",n); C: ++x; printf("%d\n",x); D: n=x++; printf("%d\n",n);
- 设有如下数组定义: int a[10];则以下哪段代码将遍历输出数组所有元素? A: int x;for (x=0; x<9; x++) printf("%d\t",a[x]); B: int x;for (x=0; x<10; x++) printf("%d\t",a[x]); C: int x;for (x=1; x<10; x++) printf("%d\t",a[x]); D: int x;for (x=1; x<=10; x++) printf("%d\t",a[x]);
- 设int x=3;,以下与其他3组输出结果不同的一组语句是________。 A: x++; printf("%d\n",x); B: n=++x; printf("%d\n",n); C: ++x; printf("%d\n",x); D: n=x++; printf("%d\n",n);
- int x=5;[br][/br] do { x++; printf("%d ",x); }while(x==5); 以上程序中,循环体的执行次数是______次
- int x=5; while(x=5) { x++; printf("%d ",x); } 以上程序中,循环体的执行次数是( )次 A: 0 B: 1 C: 5 D: 无数