版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡介
1、循環(huán)結(jié)構(gòu)程序設(shè)計(jì)復(fù)習(xí)題一選擇題1 以下while循環(huán)中,循環(huán)體執(zhí)行的次數(shù)是:( )k=1;while (-k) k=10; a) 10次 b) 無限次 c) 一次也不執(zhí)行 d) 1次2 有以下程序段,其中x為整型變量,以下選項(xiàng)中敘述正確的是:( )x=0;while (!x!=0) x+; a) 退出while循環(huán)后,x的值為0 b) 退出while循環(huán)后,x的值為1 c) while的控制表達(dá)式是非法的 d) while循環(huán)執(zhí)行無限次3. 有以下程序段,其中n為整型變量,執(zhí)行后輸出結(jié)果是:( ) n=20; while(n-); printf(“%d”,n); a)2 b) 10 c) -1
2、 d) 04. 有以下程序段,其中t為整型變量,以下選項(xiàng)中敘述正確的是:( )t=1;while (-1) t-; if(t) break; a) 循環(huán)一次也不執(zhí)行 b) 循環(huán)執(zhí)行一次 c) 循環(huán)控制表達(dá)式(-1)不合法 d) 循環(huán)執(zhí)行2次5. 有以下程序段,其中x為整型變量,以下選項(xiàng)中敘述正確的是:( )x=-1;do;while (x+); printf(“x=%d”,x); a) 該循環(huán)沒有循環(huán)體,程序錯(cuò)誤 b) 輸出x=1 c) 輸出x=0 d) 輸出x=-16. 有以下程序段,其中x,y為整型變量,程序輸出結(jié)果是:( ) for(x=0,y=0;(x=1)&(y=1);x+,y-)
3、; printf(“x=%d,y=%d”,x,y); a) x=2,y=0 b) x=1,y=0 c) x=1,y=1 d) x=0,y=0解析:在開始時(shí) x=0,y=0;進(jìn)入循環(huán)判斷(x=1)&(y= 1) 條件成立,同時(shí)把1賦給y,此時(shí)x=0,y=1;然后執(zhí)行 x+,y-,執(zhí)行之后x=1,y=0;再進(jìn)入循環(huán)判斷(x=1)&(y= 1),條件成立,同時(shí)同時(shí)把1賦給y,此時(shí)x=1,y=1;然后執(zhí)行 x+,y-,執(zhí)行之后x=2,y=0;再進(jìn)入循環(huán)判斷(x=1)&(y= 1),條件不成立,跳出循環(huán)輸出x=2,y=0 。7. 有以下程序: main() int x=0,y=0; while(x5&+
4、y) y-,x+; printf(“%d,%d”,y,x);程序的輸出結(jié)果是:( ) a) 0,5 b) 1,5 c) 0,4 d) 1,48. 有以下程序: main() int num=0; do num+;printf(“%dn”,num); while(num=2);程序的輸出結(jié)果是:( ) a) 1 b) 1 c) 1 d) 1 2 2 2 3 3 49. 有以下程序: main() int x=3; do printf(“%d”,x-=2); while(!(-x); 程序的輸出結(jié)果是:( )a) 1 b) 3 0 c) 1 -2 d) 死循環(huán)10. 有以下程序: main() i
5、nt y=10; do y-; while(-y); printf(“%dn”,y-);程序的輸出結(jié)果是:( )a) 1 b) -1 c) 8 d) 011. 有以下程序: main() int x=3,y; do y=-x;if(!y) printf(“x”);else printf(“y”); while(x); 程序的輸出結(jié)果是:( )a) xyx b) yyx c) yxx d) yxy12. 有以下程序段,此處do-while循環(huán)的結(jié)束條件是:( )int n=0,p;do scanf(“%d”,&p);n+; while (p!=12345&nb) t=a;a=b;b=t; pri
6、ntf(“%d,%dn”,a,b);程序的輸出結(jié)果是:( )a) 4,1 b) 1,4 c) 4,-1 d) -1,414. 有以下程序: main() int x=3,y=0; do while(!y) y=-x; while(x-); printf(“%d,%dn”,x,y);程序的輸出結(jié)果是:( )a) -1,3 b) -1,-3 c) 0,0 d) 1,-315. 有以下程序: main() int m,n; printf(“Enter m,n:”); scanf(“%d%d”,&m,&n); while(m!=n) while(mn) m-=n;while(nm) n-=m; pri
7、ntf(“m=%dn”,m);程序的輸出結(jié)果是:( )a) m=3 b) m=2 c) m=1 d) m=016. 有以下程序: main() int i,s=1; for(i=1;i=50;i+) if(!(i%5)&!(i%3) s+=i; printf(“%dn”,s);程序的輸出結(jié)果是:( )a) 409 b) 277 c) 1 d) 9117. 有以下程序: main() int x=0,y=0,i; for(i=1;+i) if(i%2=0) x+;continue;if(i%5=0) y+;break; printf(“%d,%d”,x,y);程序的輸出結(jié)果是:( )a) 2,1
8、 b) 2,2 c) 2,5 d) 5,218. 有以下程序: main() int i=0,a=0; while(i30)for(;)if(i%10)=0) break;else i-;i+=11; a+=i; printf(“%dn”,a);程序的輸出結(jié)果是:( )a) 66 b) 63 c) 33 d) 3219. 有以下程序: main() int a,b; for(a=1,b=1;a=10) break;if(b%3=1) b+=3; continue; printf(“%dn”,a);程序的輸出結(jié)果是:( )a) 101 b) 6 c) 5 d) 420. 有以下程序: main(
9、) int i=0; for(i+=3;i=5;i=i+2) switch(i%5) case 0: printf(“*”);case 1: printf(“#”); break;default: printf(“!”); break;case 2: printf(“&”);程序的輸出結(jié)果是:( )a) *# b) !& c) !*# d) *#*二填空題1要求使以下程序段輸出10個(gè)整數(shù),請(qǐng)?zhí)羁铡or(i=0;i=_18_;printf(“%dn”,i+=2);2. 執(zhí)行下面程序段后,k的值是_0_。r=1; n=203; k=1;do k*=n%10*r; n/=10; r+; while
10、(n);3. 下面程序的輸出結(jié)果是_ 1 2 5 10_。 main() int i,x=10; for(i=1;i=x;i+) if(x%i=0) printf(“%d ”,i);4. 下面程序的輸出結(jié)果是_無定值_。 main() int i,sum; for(i=1;i6;i+) sum+=i; printf(“%d”,sum);5. 下面程序的輸出結(jié)果是_20_。 main() int i,sum=0; for(i=2;i=0;i-) for(j=1;j=i;j+) printf(“*”);for(j=0;j=2-i;j+) printf(“!”);printf(“n”); 7. 下面
11、程序的輸出結(jié)果是_1,1_。 main() int i,j=0,a=0; for(i=0;i5;i+) do if(j%3) break;a+; j+; while(j0;) if(x%3=0) printf(“%d”,-x); continue; x-; 9. 下面程序的輸出結(jié)果是_*#_。 main() int i,j=2; for(i=1;i=2*j;i+) switch(i/j) case 0: case 1: printf(“*”); break;case 2: printf(“#”); 三操作題1計(jì)算1到10之間的奇數(shù)之和以及偶數(shù)之和。2輸出100以內(nèi)能被3整除且個(gè)位數(shù)為6的所有整
12、數(shù)。3找出2至99之間的全部同構(gòu)數(shù)。同構(gòu)數(shù)是這樣一組數(shù):它出現(xiàn)在其平方數(shù)的右邊,例如,5是25右邊的數(shù),25是625右邊的數(shù),5和25都是同構(gòu)數(shù)。4根據(jù)以下近似公式求值。 5根據(jù)以下公式求S的值。 6根據(jù)以下公式求S的值。 技術(shù)官員村位于位于亞運(yùn)城東部,主干道二以東石樓涌以西的地塊,占地面積、m2,總建筑面積、m2,共包括地下室南區(qū)、地下室北區(qū)、地上部分1棟12棟、服務(wù)中心、室外工程等多個(gè)單體工程。其中住宅面積m2,共12棟,17棟建筑層數(shù)為11層,812棟11層(局部復(fù)式頂層),首層局部架空,布置公建配套設(shè)施。integrated energy, chemicals and textile
13、Yibin city, are the three core pillars of the industry. In 2014, the wuliangye brand value to 73.58 billion yuan, the citys liquor industry slip to stabilise. Promoting deep development of integrated energy, advanced equipment manufacturing industry, changning district, shale gas production capacity
14、 reached 277 million cubic metres, built the countrys first independent high-yield wells and pipelines in the first section, the lead in factory production and supply to the population. 2.1-3 GDP growth figure 2.1-4 Yibin, Yibin city, Yibin city, fiscal revenue growth 2.1.4 topography terrain overal
15、l is Southwest, North-Eastern State. Low mountains and hills in the city landscape as the main ridge-and-Valley, pingba small fragmented nature picture for water and the second land of the seven hills. 236 meters to 2000 meters above sea level in the city, low mountain, 46.6% hills 45.3%, pingba onl
16、y 8.1%. 2.1.5 development of Yibin landscapes and distinctive feature in the center of the city, with limitations, and spatial structure of typical zonal group, 2012-cities in building with an area of about 76.2km2. From city-building situation, old town-the South Bank Center construction is lagging
17、 behind, disintegration of the old city is slow, optimization and upgrading, quality public service resources are still heavily concentrated in the old town together. Southbank Centre has not been formed, functions of the service area space is missing. Meanwhile, peripheral group centres service was
18、 weak and inadequate accounting for city development, suspicious pattern could not be formed. As regards transport, with the outward expansion of cities, cities have been expanding, centripetal city traffic organization has not changed, integrated energy, chemicals and textile Yibin city, are the th
19、ree core pillars of the industry. In 2014, the wuliangye brand value to 73.58 billion yuan, the citys liquor industry slip to stabilise. Promoting deep development of integrated energy, advanced equipment manufacturing industry, changning district, shale gas production capacity reached 277 million c
20、ubic metres, built the countrys first independent high-yield wells and pipelines in the first section, the lead in factory production and supply to the population. 2.1-3 GDP growth figure 2.1-4 Yibin, Yibin city, Yibin city, fiscal revenue growth 2.1.4 topography terrain overall is Southwest, North-
21、Eastern State. Low mountains and hills in the city landscape as the main ridge-and-Valley, pingba small fragmented nature picture for water and the second land of the seven hills. 236 meters to 2000 meters above sea level in the city, low mountain, 46.6% hills 45.3%, pingba only 8.1%. 2.1.5 development of Yibin landscapes and distinctive feature in the center of the city, with limitations, and spatial
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 2024工程項(xiàng)目協(xié)議條款與監(jiān)管辦法
- SaaS平臺(tái)定制技術(shù)開發(fā)服務(wù)協(xié)議
- 2023-2024學(xué)年重慶市永川北山中學(xué)高三二輪檢測(cè)試題(二模)數(shù)學(xué)試題試卷
- 2024定制出租車輛運(yùn)營協(xié)議典范
- 2024年履約擔(dān)保協(xié)議范本下載指南
- 2024鍋爐維修工程協(xié)議格式
- 2024年度汽車租賃協(xié)議格式
- 2024商業(yè)秘密保護(hù)競業(yè)限制協(xié)議樣本
- 2024年倉庫轉(zhuǎn)租協(xié)議條款
- 動(dòng)產(chǎn)資產(chǎn)抵押協(xié)議范例2024年
- GB/T 9452-2023熱處理爐有效加熱區(qū)測(cè)定方法
- 停車場施工方案及技術(shù)措施范本
- 高考地理一輪復(fù)習(xí)課件【知識(shí)精講+高效課堂】美食與地理環(huán)境關(guān)系
- 分居聲明告知書范本
- 2023年04月山東濟(jì)南市槐蔭區(qū)殘聯(lián)公開招聘殘疾人工作“一專兩員”公開招聘筆試參考題庫+答案解析
- 消失的13級(jí)臺(tái)階
- 營銷管理知識(shí)點(diǎn)
- 船體強(qiáng)度與結(jié)構(gòu)設(shè)計(jì)課程設(shè)計(jì)
- 不寧腿綜合征診斷與治療
- 初中英語教學(xué)活動(dòng)設(shè)計(jì)
- 三寫作的載體與受體
評(píng)論
0/150
提交評(píng)論