2022年最新版c++程序设计_谭浩强_答案 .pdf
《2022年最新版c++程序设计_谭浩强_答案 .pdf》由会员分享,可在线阅读,更多相关《2022年最新版c++程序设计_谭浩强_答案 .pdf(48页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、最新版:第一章1.5 题#include using namespace std; int main() coutThisis; coutaC+; coutprogram.; return 0; 1.6 题#include using namespace std; int main() int a,b,c; a=10; b=23; c=a+b; couta+b=; coutc; coutendl; return 0; 1.7 七题#include using namespace std; int main() int a,b,c; int f(int x,int y,int z); cinab
2、c; c=f(a,b,c); coutcendl; return 0; int f(int x,int y,int z) int m; if (xy) m=x; else m=y; if (zm) m=z; return(m); 1.8 题#include using namespace std; int main() int a,b,c; cinab; c=a+b; couta+b=a+bendl; return 0; 1.9 题#include using namespace std; int main() int a,b,c; int add(int x,int y); cinab; c
3、=add(a,b); couta+b=cendl; return 0; int add(int x,int y) int z; z=x+y; return(z); 2.3 题#include using namespace std; int main() char c1=a,c2=b,c3=c,c4=101,c5=116; coutc1c2c3n; couttbc4tc5n; return 0; 2.4 题#include using namespace std; int main() char c1=C,c2=+,c3=+; coutI say: c1c2c3; coutttHe says:
4、 C+ is very interesting! n; return 0; 2.7 题#include using namespace std; int main() int i,j,m,n; i=8; j=10; m=+i+j+; n=(+i)+(+j)+m; coutitjtmtnendl; return 0; 2.8 题#include using namespace std; int main() char c1=C, c2=h, c3=i, c4=n, c5=a; c1+=4; c2+=4; c3+=4; c4+=4; c5+=4; coutpassword is:c1c2c3c4c
5、5endl; return 0; 3.2 题#include #include using namespace std; int main ( ) float h,r,l,s,sq,vq,vz; const float pi=3.1415926; coutrh; l=2*pi*r; s=r*r*pi; sq=4*pi*r*r; vq=3.0/4.0*pi*r*r*r; vz=pi*r*r*h; coutsetiosflags(ios:fixed)setiosflag精选学习资料 - - - - - - - - - 名师归纳总结 - - - - - - -第 1 页,共 48 页s(ios:ri
6、ght) setprecision(2); coutl= setw(10)lendl; couts= setw(10)sendl; coutsq=setw(10)sqendl; coutvq=setw(10)vqendl; coutvz=setw(10)vzendl; return 0; 3.3 题#include using namespace std; int main () float c,f; coutf; c=(5.0/9.0)*(f-32); / 注意5和 9 要用实型表示 ,否则 5/9 值为 0 cout摄氏温度为 :cendl; return 0; ; 3.4 题#inclu
7、de using namespace std; int main ( ) char c1,c2; cout请输入两个字符c1,c2:; c1=getchar(); / 将输入的第一个字符赋给c1 c2=getchar(); / 将输入的第二个字符赋给c2 cout用 putchar 函数输出结果为:; putchar(c1); putchar(c2); coutendl; cout用 cout 语句输出结果为:; coutc1c2endl; return 0; 3.4 题另一解#include using namespace std; int main ( ) char c1,c2; cout
8、请输入两个字符c1,c2:; c1=getchar(); / 将输入的第一个字符赋给c1 c2=getchar(); / 将输入的第二个字符赋给c2 cout用 putchar 函数输出结果为 :; putchar(c1); putchar(44); putchar(c2); coutendl; cout用 cout 语句输出结果为 :; coutc1,c2endl; return 0; 3.5 题#include using namespace std; int main ( ) char c1,c2; int i1,i2; / 定义为整型couti1i2; c1=i1; c2=i2; co
9、ut按字符输出结果为:c1 , c2endl; return 0; 3.8 题#include using namespace std; int main ( ) int a=3,b=4,c=5,x,y; coutc & b=c)endl; cout(a|b+c & b-c)endl; coutb) & !c|1)endl; cout(!(x=a) & (y=b) & 0)endl; cout(!(a+b)+c-1 & b+c/2)endl; return 0; 3.9 题include using namespace std; int main ( ) int a,b,c; coutabc;
10、 if(ab) if(bc) coutmax=c; else coutmax=b; else if (ac) coutmax=c; else coutmax=a; coutendl; return 0; 3.9 题另一解#include using namespace std; int main ( ) int a,b,c,temp,max ; coutabc; temp=(ab)?a:b; /* 将 a和 b中的大者存入temp 中 */ max=(tempc)?temp:c; /* 将 a 和 b 中的大者与c 比较,最大者存入 max */ coutmax=maxendl; return
11、 0; 3.10 题#include using namespace std; int main ( ) int x,y; coutx; if (x1) y=x; coutx=x, y=x=y; else if (x10) / 1 x10 y=2*x-1; coutx=x, y=2*x-1=y; 精选学习资料 - - - - - - - - - 名师归纳总结 - - - - - - -第 2 页,共 48 页 else / x 10 y=3*x-11; coutx=x, y=3*x-11=y; coutendl; return 0; 3.11 题#include using namespace
12、 std; int main () float score; char grade; coutscore; while (score100|score0) coutscore; 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; default:grade=E; coutscore is score, grade is gradeendl; return 0; 3.12 题#include using n
13、amespace std; int main () long int num; int indiv,ten,hundred,thousand,ten_thousand,place; /* 分别代表个位,十位 ,百位 ,千位 ,万位和位数*/ coutnum; if (num9999) place=5; else if (num999) place=4; else if (num99) place=3; else if (num9) place=2; else place=1; coutplace=placeendl; / 计算各位数字ten_thousand=num/10000; thousa
14、nd=(int)(num-ten_thousand*10000)/1000; hundred=(int)(num-ten_thousand*10000-thousand*1000)/100; ten=(int)(num-ten_thousand*10000-thousand*1000-hundred*100)/10; indiv=(int)(num-ten_thousand*10000-thousand*1000-hundred*100-ten*10); coutoriginal order:; switch(place) case 5:coutten_thousand,thousand,hu
15、ndred,ten,indiven dl; coutreverse order:; coutindivtenhundredthousandten_thousandendl; break; case 4:coutthousand,hundred,ten,indivendl; coutreverse order:; coutindivtenhundredthousandendl; break; case 3:couthundred,ten,indivendl; coutreverse order:; coutindivtenhundredendl; break; case 2:coutten,in
16、divendl; coutreverse order:; coutindivtenendl; break; case 1:coutindivendl; coutreverse order:; coutindivendl; break; return 0; 3.13 题#include using namespace std; int main () long i; /i为利润float bonus,bon1,bon2,bon4,bon6,bon10; bon1=100000*0.1; /利润为 10 万元时的奖金bon2=bon1+100000*0.075; /利润为 20 万元时的奖金bon
17、4=bon2+100000*0.05; /利润为 40 万元时的奖金bon6=bon4+100000*0.03; /利润为 60 万元时的奖金bon10=bon6+400000*0.015; /利润为 100 万元时的奖金couti; if (i=100000) bonus=i*0.1; / 利润在 10 万元以内按10%提成奖金else if (i=200000) bonus=bon1+(i-100000)*0.075; / 利润在 10 万元至 20 万时的奖金else if (i=400000) bonus=bon2+(i-200000)*0.05; 精选学习资料 - - - - - -
18、 - - - 名师归纳总结 - - - - - - -第 3 页,共 48 页/ 利润在 20 万元至 40 万时的奖金else if (i=600000) bonus=bon4+(i-400000)*0.03; / 利润在 40 万元至 60 万时的奖金else if (i=1000000) bonus=bon6+(i-600000)*0.015; / 利润在 60 万元至 100 万时的奖金else bonus=bon10+(i-1000000)*0.01; / 利润在 100 万元以上时的奖金coutbonus=bonusendl; return 0; 3.13 题另一解#include
19、 using namespace std; int main () long i; float bonus,bon1,bon2,bon4,bon6,bon10; int c; bon1=100000*0.1; bon2=bon1+100000*0.075; bon4=bon2+200000*0.05; bon6=bon4+200000*0.03; bon10=bon6+400000*0.015; couti; c=i/100000; if (c10) c=10; switch(c) case 0: bonus=i*0.1; break; case 1: bonus=bon1+(i-100000
20、)*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; break; case 10: bonus=bon10+(i-1000000)*0.01; coutbonus=bonusendl; return 0; 3.14 题#include using namespace std; int main (
21、) int t,a,b,c,d; coutabcd; couta=a, b=b, c=c,d=db) t=a;a=b;b=t; if (ac) t=a; a=c; c=t; if (ad) t=a; a=d; d=t; if (bc) t=b; b=c; c=t; if (bd) t=b; b=d; d=t; if (cd) t=c; c=d; d=t; coutthe sorted sequence:endl; couta, b, c, dendl; return 0; 3.15 题#include using namespace std; int main () int p,r,n,m,t
22、emp; coutnm; if (nm) temp=n; n=m; m=temp; /把大数放在n 中, 小数放在 m 中 p=n*m; / 先将 n 和 m 的乘积保存在p 中, 以便求最小公倍数时用while (m!=0) / 求 n和 m 的最大公约数r=n%m; n=m; m=r; coutHCF=nendl; coutLCD=p/nendl; / p 是原来两个整数的乘积return 0; 3.16 题#include using namespace std; int main () char c; int letters=0,space=0,digit=0,other=0; cou
23、tenter one line:=a & c=A & c=0 & c=9) digit+; else other+; coutletter:letters, space:space, digit:digit, other:otherendl; return 0; 3.17 题#include using namespace std; int main () int a,n,i=1,sn=0,tn=0; coutan; while (i=n) tn=tn+a; / 赋值后的 tn 为 i个 a 组成数的值sn=sn+tn; / 赋值后的sn 为精选学习资料 - - - - - - - - - 名
24、师归纳总结 - - - - - - -第 4 页,共 48 页多项式前 i 项之和a=a*10; +i; couta+aa+aaa+.=snendl; return 0; 3.18 题#include using namespace std; int main () float s=0,t=1; int n; for (n=1;n=20;n+) t=t*n; / 求 n! s=s+t; / 将各项累加 cout1!+2!+.+20!=sendl; return 0; 3.19 题#include using namespace std; int main () int i,j,k,n; cou
25、tnarcissus numbers are:endl; for (n=100;n1000;n+) i=n/100; j=n/10-i*10; k=n%10; if (n = i*i*i + j*j*j + k*k*k) coutn ; coutendl; return 0; 3.20 题#include using namespace std; int main() const int m=1000; / 定义寻找范围int k1,k2,k3,k4,k5,k6,k7,k8,k9,k10; int i,a,n,s; for (a=2;a=m;a+) / a 是21000 之间的整数,检查它是否
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 2022年最新版c+程序设计_谭浩强_答案 2022 最新版 c+ 程序设计 谭浩强 答案
限制150内