好文档 - 专业文书写作范文服务资料分享网站

最新c++primerplus(第六版)课后编程练习答案

天下 分享 时间: 加入收藏 我要投稿 点赞

1 2 3 4 5 6 7 8

}

第二章:开始学习C++

//ex2.1--display your name and address #include int main(void) {

using namespace std;

cout<<\”;

9 10 11 12 13 14 15 16 17 18

//ex2.2--convert the furlong units to yard uints-把浪单位换位码单位 #include double fur2yd(double); int main() {

using namespace std;

cout<<\ double fur; cin>>fur;

1

19 20 21 22

cout<<\ double yd; yd=fur2yd(fur);

cout<

return 0;

24 25 }

26 double fur2yd(double t) 27 { 28

return 220*t;

29 30

}

31 32 //ex2.3-每个函数都被调用两次 33 #include 34 void mice(); 35 void see(); 36

using namespace std;

2

37 38 39 40 41 42 43 44

int main() { } mice(); mice(); see(); see(); return 0;

45 46 47 48 49

}

void mice() {

cout<<\

50 51 52 53 54

void see() {

cout<<\

3

55 }

56 57 58 59 60 61 62 63 64 65 66 67 68 69

//ex2.4

#include int main() {

using namespace std; cout<<\ int age; cin>>age; int month; month=age*12;

cout<

70 71 72

//ex2.5---convert the Celsius valve to Fahrenheit value #include

4

73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88

double C2F(double); int main() {

using namespace std;

cout<<\ double C; cin>>C; double F; F=C2F(C);

cout<

double C2F(double t) {

return 1.8*t+32; }

89 90

//ex2.6---convert the light years valve to astronomical units--把光

5

最新c++primerplus(第六版)课后编程练习答案

12345678}第二章:开始学习C++//ex2.1--displayyournameandaddress#includeintmain(void){usingnamespacestd;cout<<\”;91011121314
推荐度:
点击下载文档文档为doc格式
2oc0z6qqin9epjx24qwd4i6jo0x1m7012az
领取福利

微信扫码领取福利

微信扫码分享