C語言程序設(shè)計(科學(xué)出版社)第4章 課后習(xí)題參考答案

上傳人:仙*** 文檔編號:135679301 上傳時間:2022-08-15 格式:DOC 頁數(shù):6 大?。?6KB
收藏 版權(quán)申訴 舉報 下載
C語言程序設(shè)計(科學(xué)出版社)第4章 課后習(xí)題參考答案_第1頁
第1頁 / 共6頁
C語言程序設(shè)計(科學(xué)出版社)第4章 課后習(xí)題參考答案_第2頁
第2頁 / 共6頁
C語言程序設(shè)計(科學(xué)出版社)第4章 課后習(xí)題參考答案_第3頁
第3頁 / 共6頁

下載文檔到電腦,查找使用更方便

10 積分

下載資源

還剩頁未讀,繼續(xù)閱讀

資源描述:

《C語言程序設(shè)計(科學(xué)出版社)第4章 課后習(xí)題參考答案》由會員分享,可在線閱讀,更多相關(guān)《C語言程序設(shè)計(科學(xué)出版社)第4章 課后習(xí)題參考答案(6頁珍藏版)》請在裝配圖網(wǎng)上搜索。

1、《C語言程序設(shè)計》習(xí)題參考答案 第4章 習(xí)題參考答案 1 判斷題 1 2 3 4 5 6 × × √ √ × √ 2 選擇題 1 2 3 4 5 6 7 8 B B B B D A B B 3 程序閱讀題 (1) 105 (2) a=8 (3) abc123DEF (4) 4 程序填空題 (1) ch ch==')' count-- count==0 count>0 (2) div=n div— (3) min=mark min=mark max=mark sum+

2、=mark 5 編程題 (1) #include void main( ) { int x,y; printf("Enter the X,Y=?\n"); scanf("%d,%d",&x,&y); if(x>0 && y>0) printf("(%d,%d)是第一像限\n",x,y); else if(x>0 && y<0) printf("(%d,%d)是第四像限\n",x,y); else if(x<0 && y>0) printf("(%d,%d

3、)是第三像限\n",x,y); else if(x<0 && y<0) printf("(%d,%d)是第二像限\n",x,y); else if(x>0 && y==0) printf("(%d,%d)在X軸正方向\n",x,y); else if(x<0 && y==0) printf("(%d,%d)在X軸負方向\n",x,y); else if(x==0 && y>0) printf("(%d,%d)在Y軸正方向\n",x,y); else if(x==0 && y<0)

4、 printf("(%d,%d)在Y軸負方向\n",x,y); else printf("(%d,%d)為坐標原點\n",x,y); } (2) #include #include main() { float a, b, c, x, s; printf("Input a, b and c:"); scanf("%f%f%f", &a, &b, &c); if(a+b<=c || a+c<=b || b+c<=a) printf("Error!\n"); els

5、e{ x=(a+b+c)/2; s=sqrt(x*(x-a)*(x-b)*(x-c)); printf("area=%f\n", s); } } (3) 程序代碼如下: #include void main() { float salary, tax; int ntax; printf("\nPlease enter a salary="); scanf("%f",&salary); ntax=salary/500; if (ntax>=10) ntax=10; sw

6、itch(ntax) { case 0: case 1: tax=0;break; case 2: tax=(salary-1000)*0.05;break; case 3:case 4: tax=500*0.05+(salary-1500)*0.1;break; case 5:case 6: tax=500*0.05+1000*0.1+(salary-2500)*0.15;break; case 7:case 8:case 9:

7、 tax=500*0.05+1000*0.1+1000*0.15+(salary-3500)*0.20;break; case 10: tax=500*0.05+1000*0.1+1000*0.15+1500*0.20+(salary-5000)*0.30; } printf("\nThe tax=%10.2f\n",tax); } (4)方法一 #include #include main() { int i=1; float t=-1, s=0;

8、 do{ t= -t/i; s=s+t; i=i+1; }while(fabs(t)>1e-6); printf("s=%f\n", s); } 方法二 #include void main() { int i=1,sign=1; float t=1.0, s=0.0; while(1.0/t>1e-6) { t= t*i; s=s+sign/t; i=i+1; sign=-sign; }; printf("s=%f\n",

9、s); } (5)方法一: #include main() { int i, a, b, c; for(i=100; i<=999; i++) { a=i /100; b=i/10%10; c=i%10; if(i==a*a*a+b*b*b+c*c*c) printf("%d\n", i); } } 方法二: #include void main() { int i, a, b, c; for(a=1; a<=9; a++) for(b

10、=0; b<=9; b++) for(c=0; c<=9; c++) { i=a*100+b*10+c; if(i==a*a*a+b*b*b+c*c*c) printf("%d\n", i); } } (6) #include main() { int i, j; for(i=1; i<=4; i++) { for(j=1; j<=6-i; j++) putchar(' '); for(j=1; j<=i*2-1; j++) pr

11、intf("%c", 65+i-1); printf("\n"); } for(i=3; i>=1; i--) { for(j=1; j<=6-i; j++) putchar(' '); for(j=1; j<=i*2-1; j++) printf("%c", 65+i-1); printf("\n"); } } (7) #include main() { int a, b, c; for(a=0; a<=20; a++) for(b=0; b<=33; b++

12、) { c=100-a-b; if(a*5+b*3+c/3.0==100) printf("%d, %d, %d\n", a, b, c); } } (8) #include #include main() { float x, x0, a; scanf("%f", &a); x=a; do{ x0=x; x=2/3.0*x0+a/(3*x0*x0); }while(fabs(x-x0)>1e-6); printf("x=%

13、f\n", x); } (9) #include #include main() { float pi, pi0; int i=1 pi=2; do{ pi0=pi; pi=pi*(2.0*i/(2.0*i-1))*(2.0*i/(2.0*i+1)); i=i+1; }while(fabs(pi-pi0)>1e-6); printf("pi=%f\n", pi); } (10) #include void main() { int i,j,s;

14、 for(i=6;i<=1000;i++) { s=1; for(j=2;j<=i/2;j++) if(i%j==0) s+=j; if(s==i) /*判斷是否是合數(shù)*/ { printf("%d=1",i); /* 打印輸出合數(shù)及=1*/ for(j=2;j<=i/2;j++) /* 打印輸出各因子*/ if(i%j==0) printf("+%d",j); printf("\n"); } } } (11) #include #include void main() { int x, y,z,k; k=sqrt(2000); for(x=0;x<=k;x++) for(y=0;y<=k;y++) for(z=0;z<=k;z++) if(x*x+y*y+z*z==2000) printf("%d,%d,%d\n",x,y,z); }

展開閱讀全文
溫馨提示:
1: 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
2: 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
3.本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
5. 裝配圖網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責(zé)。
6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

相關(guān)資源

更多
正為您匹配相似的精品文檔
關(guān)于我們 - 網(wǎng)站聲明 - 網(wǎng)站地圖 - 資源地圖 - 友情鏈接 - 網(wǎng)站客服 - 聯(lián)系我們

copyright@ 2023-2025  zhuangpeitu.com 裝配圖網(wǎng)版權(quán)所有   聯(lián)系電話:18123376007

備案號:ICP2024067431-1 川公網(wǎng)安備51140202000466號


本站為文檔C2C交易模式,即用戶上傳的文檔直接被用戶下載,本站只是中間服務(wù)平臺,本站所有文檔下載所得的收益歸上傳人(含作者)所有。裝配圖網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對上載內(nèi)容本身不做任何修改或編輯。若文檔所含內(nèi)容侵犯了您的版權(quán)或隱私,請立即通知裝配圖網(wǎng),我們立即給予刪除!