C語言課后習(xí)題答案 第四版 譚浩強(qiáng) 2

上傳人:仙*** 文檔編號:144882842 上傳時(shí)間:2022-08-28 格式:DOC 頁數(shù):101 大?。?84.50KB
收藏 版權(quán)申訴 舉報(bào) 下載
C語言課后習(xí)題答案 第四版 譚浩強(qiáng) 2_第1頁
第1頁 / 共101頁
C語言課后習(xí)題答案 第四版 譚浩強(qiáng) 2_第2頁
第2頁 / 共101頁
C語言課后習(xí)題答案 第四版 譚浩強(qiáng) 2_第3頁
第3頁 / 共101頁

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

10 積分

下載資源

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

資源描述:

《C語言課后習(xí)題答案 第四版 譚浩強(qiáng) 2》由會員分享,可在線閱讀,更多相關(guān)《C語言課后習(xí)題答案 第四版 譚浩強(qiáng) 2(101頁珍藏版)》請?jiān)谘b配圖網(wǎng)上搜索。

1、 C語言課后習(xí)題答案-第四版- 譚浩強(qiáng) 第一章 #include int main ( ) { printf ("**************************\n\n"); printf(" Very Good!\n\n"); printf ("**************************\n"); return 0; } #include int main() {int a,b,c,max; printf("please input a,b,c:\n");

2、scanf("%d,%d,%d",&a,&b,&c); max=a; if (max #include int main() {float p,r,n; r=0.1; n=10; p=pow(1+r,n); printf("p=%f\n",p); return 0

3、; } #include #include int main() {float r5,r3,r2,r1,r0,p,p1,p2,p3,p4,p5; p=1000; r5=0.0585; r3=0.054; r2=0.0468; r1=0.0414; r0=0.0072; p1=p*((1+r5)*5); // 一次存5年期 p2=p*(1+2*r2)*(1+3*r3); // 先存2年期,到期后將本息再存3年期 p3=p*(1+3*r3)*(1+2*r2);

4、// 先存3年期,到期后將本息再存2年期 p4=p*pow(1+r1,5); // 存1年期,到期后將本息存再存1年期,連續(xù)存5次 p5=p*pow(1+r0/4,4*5); // 存活期存款?;钇诶⒚恳患径冉Y(jié)算一次 printf("p1=%f\n",p1); // 輸出按第1方案得到的本息和 printf("p2=%f\n",p2); // 輸出按第2方案得到的本息和 printf("p3=%f\n",p3); // 輸出按第3方案得到的本息和 printf("p4=%f\n

5、",p4); // 輸出按第4方案得到的本息和 printf("p5=%f\n",p5); // 輸出按第5方案得到的本息和 return 0; } #include #include int main() {double r5,r3,r2,r1,r0,p,p1,p2,p3,p4,p5; p=1000; r5=0.0585; r3=0.054; r2=0.0468; r1=0.0414; r0=0.0072; p1=p*((1+r5)*5); //

6、一次存5年期 p2=p*(1+2*r2)*(1+3*r3); // 先存2年期,到期后將本息再存3年期 p3=p*(1+3*r3)*(1+2*r2); // 先存3年期,到期后將本息再存2年期 p4=p*pow(1+r1,5); // 存1年期,到期后將本息存再存1年期,連續(xù)存5次 p5=p*pow(1+r0/4,4*5); // 存活期存款?;钇诶⒚恳患径冉Y(jié)算一次 printf("p1=%f\n",p1); // 輸出按第1方案得到的本息和 printf("p2=%f\n",p2);

7、 // 輸出按第2方案得到的本息和 printf("p3=%f\n",p3); // 輸出按第3方案得到的本息和 printf("p4=%f\n",p4); // 輸出按第4方案得到的本息和 printf("p5=%f\n",p5); // 輸出按第5方案得到的本息和 return 0; } #include #include int main() {float r5,r3,r2,r1,r0,p,p1,p2,p3,p4,p5; p=1000; r5=0.0

8、585; r3=0.054; r2=0.0468; r1=0.0414; r0=0.0072; p1=p*((1+r5)*5); // 一次存5年期 p2=p*(1+2*r2)*(1+3*r3); // 先存2年期,到期后將本息再存3年期 p3=p*(1+3*r3)*(1+2*r2); // 先存3年期,到期后將本息再存2年期 p4=p*pow(1+r1,5); // 存1年期,到期后將本息存再存1年期,連續(xù)存5次 p5=p*pow(1+r0/4,4*5); // 存活

9、期存款?;钇诶⒚恳患径冉Y(jié)算一次 printf("p1=%10.2f\n",p1); // 輸出按第1方案得到的本息和 printf("p2=%10.2f\n",p2); // 輸出按第2方案得到的本息和 printf("p3=%10.2f\n",p3); // 輸出按第3方案得到的本息和 printf("p4=%10.2f\n",p4); // 輸出按第4方案得到的本息和 printf("p5=%10.2f\n",p5); // 輸出按第5方案得到的本息和 return 0; }

10、 #include #include int main() {float d=300000,p=6000,r=0.01,m; m=log10(p/(p-d*r))/log10(1+r); printf("m=%6.2f\n",m); return 0; } #include  int main() {int c1,c2; c1=197; c2=198; printf("c1=%c,c2=%c\n",c1,c2); printf("c1=%d,c2=%d\n",c1,c2); retur

11、n 0; } #include int main() {int a,b; float x,y; char c1,c2; scanf("a=%d b=%d",&a,&b); scanf("%f %e",&x,&y); scanf("%c%c",&c1,&c2); printf("a=%d,b=%d,x=%f,y=%f,c1=%c,c2=%c\n",a,b,x,y,c1,c2); return 0; } #include int main() {char c1='C',c2='h',c3='i',

12、c4='n',c5='a'; c1=c1+4; c2=c2+4; c3=c3+4; c4=c4+4; c5=c5+4; printf("passwor is %c%c%c%c%c\n",c1,c2,c3,c4,c5); return 0; } #include int main () {float h,r,l,s,sq,vq,vz; float pi=3.141526; printf("請輸入圓半徑r,圓柱高h(yuǎn)∶"); scanf("%f,%f",&r,&h); //要求輸入圓半徑r和圓柱高h(yuǎn)

13、 l=2*pi*r; //計(jì)算圓周長l s=r*r*pi; //計(jì)算圓面積s sq=4*pi*r*r; //計(jì)算圓球表面積sq vq=3.0/4.0*pi*r*r*r; //計(jì)算圓球體積vq vz=pi*r*r*h; //計(jì)算圓柱體積vz printf("圓周長為: l=%6.2f\n",l); printf("圓面積為: s=%6.

14、2f\n",s); printf("圓球表面積為: sq=%6.2f\n",sq); printf("圓球體積為: v=%6.2f\n",vq); printf("圓柱體積為: vz=%6.2f\n",vz); return 0; } #include int main() { char c1,c2; printf("請輸入兩個(gè)字符c1,c2:"); c1=getchar(); c2=getchar(); printf("用putchar語句輸出結(jié)果為:"); putchar(c1); putchar(c

15、2); printf("\n"); printf("用printf語句輸出結(jié)果為:"); printf("%c %c\n",c1,c2); return 0; } #include int main() { int c1,c2; //整型定義 printf("請輸入兩個(gè)整數(shù)c1,c2:"); scanf("%d,%d",&c1,&c2); printf("按字符輸出結(jié)果:\n"); printf("%c,%c\n",c1,c2); printf("按ASCII碼輸出結(jié)果為:

16、\n"); printf("%d,%d\n",c1,c2); return 0; }#include int main() { char c1,c2; //定義字符型變量 int i1,i2; //定義整型變量 printf("請輸入兩個(gè)字符c1,c2:"); scanf("%c,%c",&c1,&c2); i1=c1; //賦值給整型變量 i2=c2

17、; printf("按字符輸出結(jié)果:\n"); printf("%c,%c\n",i1,i2); printf("按整數(shù)輸出結(jié)果:\n"); printf("%d,%d\n",c1,c2); return 0; }#include int main() { char c1,c2; //定義為字符型 int i1,i2; //定義為整型 printf("請輸入兩個(gè)整數(shù)i1,i

18、2:"); scanf("%d,%d",&i1,&i2); c1=i1; //將整數(shù)賦值給字符變量 c2=i2; printf("按字符輸出結(jié)果:\n"); printf("%c,%c\n",c1,c2); printf("按整數(shù)輸出結(jié)果:\n"); printf("%d,%d\n",c1,c2); return 0; } 第四章 #include int main() { int a,b,c; printf

19、("請輸入三個(gè)整數(shù):"); scanf("%d,%d,%d",&a,&b,&c); if (a int main() { int a,b,c,temp,max; pri

20、ntf("請輸入三個(gè)整數(shù):"); scanf("%d,%d,%d",&a,&b,&c); temp=(a>b)?a:b; /*將a和b中的大者存入temp中*/ max=(temp>c)?temp:c; /*將a和b中的大者與c比較,取最大者*/ printf("三個(gè)整數(shù)的最大數(shù)是%d\n",max); return 0; } #include #include #define M 1000 int main() { int i,k;

21、 printf("請輸入一個(gè)小于%d的整數(shù)i:",M); scanf("%d",&i); while (i>M) {printf("輸入的數(shù)不符合要求,請重新輸入一個(gè)小于%d的整數(shù)i:",M); scanf("%d",&i); } k=sqrt(i); printf("%d的平方根的整數(shù)部分是:%d\n",i,k); return 0; } #include #include #define M 1000

22、int main() { int i,k; printf("請輸入一個(gè)小于%d的整數(shù)i:",M); scanf("%d",&i); if (i>M) {printf("輸入的數(shù)不符合要求,請重新輸入一個(gè)小于%d的整數(shù)i:",M); scanf("%d",&i); } k=sqrt(i); printf("%d的平方根的整數(shù)部分是:%d\n",i,k); return 0; } #include int main

23、() { int x,y; printf("輸入x:"); scanf("%d",&x); if(x<1) /* x<1 */ { y=x; printf("x=%3d, y=x=%d\n" ,x,y); } else if(x<10) /* 1==10 */ { y=3*x-11; printf("x=%d,

24、 y=3*x-11=%d\n",x,y); } return 0; }#include int main() { int x,y; printf("enter x:"); scanf("%d",&x); y=-1; if(x!=0) if(x>0) y=1; else y=0; printf("x=%d,y=%d\n",x,y); return 0; } #include int main() { int x,y; printf("ple

25、ase enter x:"); scanf("%d",&x); y=0; if(x>=0) if(x>0) y=1; else y=-1; printf("x=%d,y=%d\n",x,y); return 0; } #include int main() { float score; char grade; printf("請輸入學(xué)生成績:"); scanf("%f",&score); while (score>100||score<0) {printf("\n 輸

26、入有誤,請重輸"); scanf("%f",&score); } switch((int)(score/10)) {case 10: case 9: grade='A';break; case 8: grade='B';break; case 7: grade='C';break; case 6: grade='D';break; case 5: case 4: case 3: case 2: case 1: case 0: grade='E'; } printf("成績是 %5.1f,相應(yīng)的等級是%c\n

27、 ",score,grade); return 0; } #include #include int main() { int num,indiv,ten,hundred,thousand,ten_thousand,place; //分別代表個(gè)位,十位,百位,千位,萬位和位數(shù) printf("請輸入一個(gè)整數(shù)(0-99999):"); scanf("%d",&num); if (num>9999) place=5; else if (num>999) place=4;

28、 else if (num>99) place=3; else if (num>9) place=2; else place=1; printf("位數(shù):%d\n",place); printf("每位數(shù)字為:"); ten_thousand=num/10000; thousand=(int)(num-ten_thousand*10000)/1000; hundred=(int)(num-ten_thousand*10000-thousand*1000)/100; ten=(int)(num-ten_tho

29、usand*10000-thousand*1000-hundred*100)/10; indiv=(int)(num-ten_thousand*10000-thousand*1000-hundred*100-ten*10); switch(place) {case 5:printf("%d,%d,%d,%d,%d",ten_thousand,thousand,hundred,ten,indiv); printf("\n反序數(shù)字為:"); printf("%d%d%d%d%d\n",indiv,ten,hundred,thousand,ten_tho

30、usand); break; case 4:printf("%d,%d,%d,%d",thousand,hundred,ten,indiv); printf("\n反序數(shù)字為:"); printf("%d%d%d%d\n",indiv,ten,hundred,thousand); break; case 3:printf("%d,%d,%d",hundred,ten,indiv); printf("\n反序數(shù)字為:"); printf("%d%d%d\n",indiv,ten,hundred);

31、 break; case 2:printf("%d,%d",ten,indiv); printf("\n反序數(shù)字為:"); printf("%d%d\n",indiv,ten); break; case 1:printf("%d",indiv); printf("\n反序數(shù)字為:"); printf("%d\n",indiv); break; } return 0; }#include int main() { int i; dou

32、ble bonus,bon1,bon2,bon4,bon6,bon10; bon1=100000*0.1; bon2=bon1+100000*0.075; bon4=bon2+100000*0.05; bon6=bon4+100000*0.03; bon10=bon6+400000*0.015; printf("請輸入利潤i:"); scanf("%d",&i); if (i<=100000) bonus=i*0.1; else if (i<=200000) bonus=bon1+(i-100000)*0.075;

33、 else if (i<=400000) bonus=bon2+(i-200000)*0.05; else if (i<=600000) bonus=bon4+(i-400000)*0.03; else if (i<=1000000) bonus=bon6+(i-600000)*0.015; else bonus=bon10+(i-1000000)*0.01; printf("獎金是: %10.2f\n",bonus); return 0; } #include int main()

34、 { int i; double bonus,bon1,bon2,bon4,bon6,bon10; int branch; bon1=100000*0.1; bon2=bon1+100000*0.075; bon4=bon2+200000*0.05; bon6=bon4+200000*0.03; bon10=bon6+400000*0.015; printf("請輸入利潤i:"); scanf("%d",&i); branch=i/100000; if (branch>10) branch=10; switc

35、h(branch) { case 0:bonus=i*0.1;break; case 1:bonus=bon1+(i-100000)*0.075;break; case 2: case 3: bonus=bon2+(i-200000)*0.05;break; case 4: case 5: bonus=bon4+(i-400000)*0.03;break; case 6: case 7: case 8: case 9: bonus=bon6+(i-600000)*0.015;br

36、eak; case 10: bonus=bon10+(i-1000000)*0.01; } printf("獎金是 %10.2f\n",bonus); return 0; } #include int main() {int t,a,b,c,d; printf("請輸入四個(gè)數(shù):"); scanf("%d,%d,%d,%d",&a,&b,&c,&d); printf("a=%d,b=%d,c=%d,d=%d\n",a,b,c,d); if (a>b) { t=a;a=b;b=t;} if

37、 (a>c) { t=a;a=c;c=t;} if (a>d) { t=a;a=d;d=t;} if (b>c) { t=b;b=c;c=t;} if (b>d) { t=b;b=d;d=t;} if (c>d) { t=c;c=d;d=t;} printf("排序結(jié)果如下: \n"); printf("%d %d %d %d \n" ,a,b,c,d); return 0; } #include int main() { int h=10;

38、float x1=2,y1=2,x2=-2,y2=2,x3=-2,y3=-2,x4=2,y4=-2,x,y,d1,d2,d3,d4; printf("請輸入一個(gè)點(diǎn)(x,y):"); scanf("%f,%f",&x,&y); d1=(x-x4)*(x-x4)+(y-y4)*(y-y4); /*求該點(diǎn)到各中心點(diǎn)距離*/ d2=(x-x1)*(x-x1)+(y-y1)*(y-y1); d3=(x-x2)*(x-x2)+(y-y2)*(y-y2); d4=(x-x3)*(x-x3)+(y-y3)*(y-y3); if (d1>1 && d

39、2>1 && d3>1 && d4>1) h=0; /*判斷該點(diǎn)是否在塔外*/ printf("該點(diǎn)高度為 %d\n",h); return 0; } 第五章 #include #include // 程序中用到數(shù)學(xué)函數(shù)fabs,應(yīng)包含頭文件math.n int main() { int sign=1,count=0; // sign用來表示數(shù)值的符號,count用來統(tǒng)計(jì)循環(huán)次數(shù) double pi=0.0,n=1.0,term

40、=1.0; // pi開始代表多項(xiàng)式的值,最后代表π的值, n代表分母,term代表當(dāng)前項(xiàng)的值 while(fabs(term)>=1e-8) // 檢查當(dāng)前項(xiàng)term的絕對值是否大于或等于10的(-6)次方 { pi=pi+term; // 把當(dāng)前項(xiàng)term累加到pi中 n=n+2; // n+2是下一項(xiàng)的分母 sign=-sign; // sign代表符號,下一項(xiàng)的符號與上一項(xiàng)符號相反 ter

41、m=sign/n; // 求出下一項(xiàng)的值term count++; // count累加1 } pi=pi*4; // 多項(xiàng)式的和pi乘以4,才是π的近似值 printf("pi=%10.8f\n",pi); // 輸出π的近似值 printf("count=%d\n",count); // 輸出循環(huán)次數(shù) return 0; } #include int main()

42、{ int p,r,n,m,temp; printf("請輸入兩個(gè)正整數(shù)n,m:"); scanf("%d,%d,",&n,&m); if (n

43、dio.h> int main() { char c; int letters=0,space=0,digit=0,other=0; printf("請輸入一行字符:\n"); while((c=getchar())!='\n') { if (c>='a' && c<='z' || c>='A' && c<='Z') letters++; else if (c==' ') space++; else if (c>='0' && c<='9') digit++; else

44、 other++; } printf("字母數(shù):%d\n空格數(shù):%d\n數(shù)字?jǐn)?shù):%d\n其它字符數(shù):%d\n",letters,space,digit,other); return 0; }#include int main() { int a,n,i=1,sn=0,tn=0; printf("a,n=:"); scanf("%d,%d",&a,&n); while (i<=n) { tn=tn+a; /*賦值后的tn為i個(gè) a組成數(shù)的值*/ sn=sn+tn; /*賦值后的sn為

45、多項(xiàng)式前i項(xiàng)之和*/ a=a*10; ++i; } printf("a+aa+aaa+...=%d\n",sn); return 0; }#include int main() {double s=0,t=1; int n; for (n=1;n<=20;n++) { t=t*n; s=s+t; } printf("1!+2!+...+20!=%22.15e\n",s); return 0; } #include int main() { in

46、t n1=100,n2=50,n3=10; double k,s1=0,s2=0,s3=0; for (k=1;k<=n1;k++) /*計(jì)算1到100的和*/ {s1=s1+k;} for (k=1;k<=n2;k++) /*計(jì)算1到50各數(shù)的平方和*/ {s2=s2+k*k;} for (k=1;k<=n3;k++) /*計(jì)算1到10的各倒數(shù)和*/ {s3=s3+1/k;} printf("sum=%15.6f\n",s1+s2+s3); return 0; }#include int mai

47、n() { int i,j,k,n; printf("parcissus numbers are "); for (n=100;n<1000;n++) { i=n/100; j=n/10-i*10; k=n%10; if (n==i*i*i + j*j*j + k*k*k) printf("%d ",n); } printf("\n"); return 0; }#define M 1000 /*定義尋找范圍*/ #include int

48、main() { int k1,k2,k3,k4,k5,k6,k7,k8,k9,k10; int i,a,n,s; for (a=2;a<=M;a++) /* a是2-1000之間的整數(shù),檢查它是否完數(shù) */ {n=0; /* n用來累計(jì)a的因子的個(gè)數(shù) */ s=a; /* s用來存放尚未求出的因子之和,開始時(shí)等于a */ for (i=1;i

49、的因子 */ {n++; /* n加1,表示新找到一個(gè)因子 */ s=s-i; /* s減去已找到的因子,s的新值是尚未求出的因子之和 */ switch(n) /* 將找到的因子賦給k1...k9,或k10 */ {case 1: k1=i; break; /* 找出的笫1個(gè)因子賦給k1 */ case 2: k2=i; break; /* 找出的笫2個(gè)因子賦給k2 */ case 3: k3=i; bre

50、ak; /* 找出的笫3個(gè)因子賦給k3 */ case 4: k4=i; break; /* 找出的笫4個(gè)因子賦給k4 */ case 5: k5=i; break; /* 找出的笫5個(gè)因子賦給k5 */ case 6: k6=i; break; /* 找出的笫6個(gè)因子賦給k6 */ case 7: k7=i; break; /* 找出的笫7個(gè)因子賦給k7 */ case 8: k8=i; break; /* 找出的笫8個(gè)因子賦

51、給k8 */ case 9: k9=i; break; /*找出的笫9個(gè)因子賦給k9 */ case 10: k10=i; break; /* 找出的笫10個(gè)因子賦給k10 */ } } if (s==0) { printf("%d ,Its factors are ",a); if (n>1) printf("%d,%d",k1,k2); /* n>1表示a至少有2個(gè)因子 */ if (n>2) printf(",%d",k3);

52、 /* n>2表示至少有3個(gè)因子,故應(yīng)再輸出一個(gè)因子 */ if (n>3) printf(",%d",k4); /* n>3表示至少有4個(gè)因子,故應(yīng)再輸出一個(gè)因子 */ if (n>4) printf(",%d",k5); /* 以下類似 */ if (n>5) printf(",%d",k6); if (n>6) printf(",%d",k7); if (n>7) printf(",%d",k8); if (n>8) printf(",%d",

53、k9); if (n>9) printf(",%d",k10); printf("\n"); } } return 0; }#include int main() {int m,s,i; for (m=2;m<1000;m++) {s=0; for (i=1;i

54、) if (m%i==0) printf("%d ",i); printf("\n"); } } return 0; }#include int main() { int i,n=20; double a=2,b=1,s=0,t; for (i=1;i<=n;i++) { s=s+a/b; t=a, a=a+b, b=t; } printf("sum=%16.10f\n",s); return 0; }#include

55、tdio.h> int main() { double sn=100,hn=sn/2; int n; for (n=2;n<=10;n++) { sn=sn+2*hn; /*第n次落地時(shí)共經(jīng)過的米數(shù)*/ hn=hn/2; /*第n次反跳高度*/ } printf("第10次落地時(shí)共經(jīng)過%f米\n",sn); printf("第10次反彈%f米\n",hn); return 0; }#include int main() { int day,x1,x2;

56、 day=9; x2=1; while(day>0) {x1=(x2+1)*2; /*第1天的桃子數(shù)是第2天桃子數(shù)加1后的2倍.*/ x2=x1; day--; } printf("total=%d\n",x1); return 0; } #include #include int main() { float a,x0,x1; printf("enter a positive number:"); scanf("%f",&a); x0=a/2;

57、x1=(x0+a/x0)/2; do {x0=x1; x1=(x0+a/x0)/2; }while(fabs(x0-x1)>=1e-5); printf("The square root of %5.2f is %8.5f\n",a,x1); return 0; } #include #include int main() {double x1,x0,f,f1; x1=1.5; do {x0=x1; f=((2*x0-4)*x0+3)*x0-6; f1=(

58、6*x0-8)*x0+3; x1=x0-f/f1; }while(fabs(x1-x0)>=1e-5); printf("The root of equation is %5.2f\n",x1); return 0; } #include #include int main() {float x0,x1,x2,fx0,fx1,fx2; do {printf("enter x1 & x2:"); scanf("%f,%f",&x1,&x2); fx1=x1*((2*x1-4)*x1

59、+3)-6; fx2=x2*((2*x2-4)*x2+3)-6; }while(fx1*fx2>0); do {x0=(x1+x2)/2; fx0=x0*((2*x0-4)*x0+3)-6; if ((fx0*fx1)<0) {x2=x0; fx2=fx0; } else {x1=x0; fx1=fx0; } }while(fabs (fx0)>=1e-5); printf("x=%6.2f\n",x0); return 0; } #incl

60、ude int main() {int i,j,k; for (i=0;i<=3;i++) {for (j=0;j<=2-i;j++) printf(" "); for (k=0;k<=2*i;k++) printf("*"); printf("\n"); } for (i=0;i<=2;i++) {for (j=0;j<=i;j++) printf(" "); for (k=0;k<=4-2*i;k++) printf("*");

61、 printf("\n"); } return 0; } #include int main() { char i,j,k; /*是a的對手;j是b的對手;k是c的對手*/ for (i='x';i<='z';i++) for (j='x';j<='z';j++) if (i!=j) for (k='x';k<='z';k++) if (i!=k && j!=k) if (i!='x' && k!='x' && k!='z') printf("

62、A--%c\nB--%c\nC--%c\n",i,j,k); return 0; } 第六章 #include #include int main() {int i,j,n,a[101]; for (i=1;i<=100;i++) a[i]=i; a[1]=0; for (i=2;i

63、]%a[i]==0) a[j]=0; } printf("\n"); for (i=2,n=0;i<=100;i++) { if(a[i]!=0) {printf("%5d",a[i]); n++; } if(n==10) {printf("\n"); n=0; } } printf("\n"); return 0; }#include int main() {int

64、i,j,min,temp,a[11]; printf("enter data:\n"); for (i=1;i<=10;i++) {printf("a[%d]=",i); scanf("%d",&a[i]); } printf("\n"); printf("The orginal numbers:\n"); for (i=1;i<=10;i++) printf("%5d",a[i]); printf("\n"); for (i=1;i<=9;i++) {min=i; for (j=i+1;j<

65、=10;j++) if (a[min]>a[j]) min=j; temp=a[i]; a[i]=a[min]; a[min]=temp; } printf("\nThe sorted numbers:\n"); for (i=1;i<=10;i++) printf("%5d",a[i]); printf("\n"); return 0; } #include int main() { int a[3][3],sum=0; int i,j; printf("ente

66、r data:\n"); for (i=0;i<3;i++) for (j=0;j<3;j++) scanf("%3d",&a[i][j]); for (i=0;i<3;i++) sum=sum+a[i][i]; printf("sum=%6d\n",sum); return 0; } #include int main() { int a[11]={1,4,6,9,13,16,19,28,40,100}; int temp1,temp2,number,end,i,j; printf("array a:\n"); for (i=0;i<10;i++) printf("%5d",a[i]); printf("\n"); printf("insert data:"); scanf("%d",&number); end=a[9]; if (number>end) a[10]=number; else {for (i=0;i<

展開閱讀全文
溫馨提示:
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)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(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)方式做保護(hù)處理,對上載內(nèi)容本身不做任何修改或編輯。若文檔所含內(nèi)容侵犯了您的版權(quán)或隱私,請立即通知裝配圖網(wǎng),我們立即給予刪除!