第一范文网 - 专业文章范例文档资料分享平台

C++程序设计(第2版 谭浩强)习题答案

来源:用户分享 时间:2025/8/30 17:16:21 本文由loading 分享 下载这篇文档手机版
说明:文章内容仅供预览,部分内容可能不全,需要完整文档或者需要复制内容,请下载word后使用。下载word有问题请添加微信号:xxxxxxx或QQ:xxxxxx 处理(尽可能给您提供完整文档),感谢您的支持与谅解。

C++程序设计习题答案

第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;

cout<<\ return 0; }

第3章

2.#include

#include using namespace std; int main ( )

{float h,r,l,s,sq,vq,vz;

const float pi=3.1415926; cout<<\ cin>>r>>h; 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;

cout<

cout<<\ cout<<\ cout<<\ cout<<\ cout<<\ return 0; }

3.#include

using namespace std; int main () {float c,f;

cout<<\请输入一个华氏温度:\ cin>>f;

c=(5.0/9.0)*(f-32); //注意5和9要用实型表示,否则5/9值为0 cout<<\摄氏温度为:\ return 0; };

4.#include

using namespace std; int main ( ) {char c1,c2;

cout<<\请输入两个字符c1,c2:\

c1=getchar(); //将输入的第一个字符赋给c1 c2=getchar(); //将输入的第二个字符赋给c2 cout<<\用putchar函数输出结果为:\ putchar(c1); putchar(c2); cout<

cout<<\用cout语句输出结果为:\ cout<

9.第一种:#include

using namespace std; int main ( ) {int a,b,c;

cout<<\ cin>>a>>b>>c; if(a

cout<<\ else

cout<<\ else if (a

cout<<\ else

cout<<\ cout<

第二种:#include using namespace std; int main ( )

{int a,b,c,temp,max ;

cout<<\ cin>>a>>b>>c;

temp=(a>b)?a:b; /* 将a和b中的大者存入temp中 */

max=(temp>c)?temp:c; /* 将a和b中的大者与c比较,最大者存入max */ cout<<\ return 0; }

10.#include

using namespace std; int main ( ) {int x,y;

cout<<\ cin>>x;

if (x<1) {y=x;

cout<<\ }

else if (x<10) // 1≤x<10 {y=2*x-1;

cout<<\ }

else // x≥10 {y=3*x-11;

cout<<\ } cout<

11.#include

using namespace std; int main () {float score; char grade;

cout<<\ cin>>score;

while (score>100||score<0)

{cout<<\ cin>>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; default:grade='E'; }

cout<<\ return 0; }

12.#include

using namespace std; int main () {long int num;

int indiv,ten,hundred,thousand,ten_thousand,place;

/*分别代表个位,十位,百位,千位,万位和位数*/ cout<<\ cin>>num; if (num>9999) place=5; else if (num>999) place=4; else if (num>99) place=3; else if (num>9) place=2; else place=1;

cout<<\ //计算各位数字

ten_thousand=num/10000;

thousand=(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); cout<<\ switch(place) {case

5:cout<

case 4:cout<

C++程序设计(第2版 谭浩强)习题答案.doc 将本文的Word文档下载到电脑,方便复制、编辑、收藏和打印
本文链接:https://www.diyifanwen.net/c70cmo0t0ua4g4gg0l164_1.html(转载请注明文章来源)
热门推荐
Copyright © 2012-2023 第一范文网 版权所有 免责声明 | 联系我们
声明 :本网站尊重并保护知识产权,根据《信息网络传播权保护条例》,如果我们转载的作品侵犯了您的权利,请在一个月内通知我们,我们会及时删除。
客服QQ:xxxxxx 邮箱:xxxxxx@qq.com
渝ICP备2023013149号
Top