填空題
以下do-while語(yǔ)句中循環(huán)體的執(zhí)行次數(shù)是() a=10; b=0; do { b+=2; a-=2+b; } while (a>=0);
以下程序段要求從鍵盤輸入字符,當(dāng)輸入字母為'Y' 時(shí),執(zhí)行循環(huán)體,則括號(hào)內(nèi)應(yīng)填寫(). ch=getchar(); while(ch ____ 'Y')/*在括號(hào)中填寫*/ ch=getchar();
以下程序的輸出結(jié)果為() #include "stdio.h" main(){int a;for(a=0;a<10;a++);printf("%d",a);}
當(dāng)a=3,b=2,c=1;時(shí),執(zhí)行以下程序段后 a=(). if(a>b) a=b; if(b>c) b=c; else c=b; c=a;
執(zhí)行下列語(yǔ)句后,b 的十進(jìn)制值是(). int x=240,y=15,b; char z='A'; b=(( x && y ) && ( z < 'a' ));
當(dāng)a=1,b=2,c=3時(shí),執(zhí)行以下程序段后b=() if (a>c) b=a; a=c; c=b;
執(zhí)行下列語(yǔ)句的結(jié)果是() a=3;printf("%d,",++a);printf("%d",a++);
以下程序的輸出結(jié)果為() #include "stdio.h" main(){int a=010,j=10;printf("%d,%d\n",++a,j--);}