1 void ch4_1() {
2 using namespace std;
3 string fname, lname;
4 char grade;
5 unsigned int age;
6 cout << "enter first name: ";
7 getline(cin, fname);
8 cout << "enter last name: ";
9 getline(cin, lname);
10 cout << "enter your grade: ";
11 cin >> grade;
12 cout << "enter your age: ";
13 cin >> age;
14 cout << "Name: " << lname << ", " << fname << endl;
15 cout << "Grade: " << grade + 1 << endl;
16 cout << "Age: " << age << endl;
17 }
18
19 void ch4_2() {
20 using namespace std;
21 string name, dessert;
22 cout << "Enter your name: ";
23 getline(cin, name);
24 cout << "Enter your favorite dessert: ";
25 getline(cin, dessert);
26 cout << "I have some delicious " << dessert << " for you, " << name << "." << endl;
27 }
28
29 void ch4_3() {
30 using namespace std;
31 char fname[20], lname[20], combine[41];
32 cout << "enter your first name: ";
33 cin.getline(fname, 20);
34 cout << "enter your last name: ";
35 cin.getline(lname, 20);
36 strcpy(combine, lname);
37 strcat(combine, ", ");
38 strcat(combine, fname);
39 cout << "Here's the information in a single string: " << combine << endl;
40 }
41
42 void ch4_4() {
43 using namespace std;
44 string fname, lname, combine;
45 cout << "enter your first name: ";
46 getline(cin, fname);
47 cout << "enter your last name: ";
48 getline(cin, lname);
49 combine = lname + ", " + fname;
50 cout << "Here's the information in a single string: " << combine << endl;
51 }
52
53 void ch4_5() {
54 using namespace std;
55 struct CandyBar{
56 string brand;
57 double weight;
58 unsigned int kll;
59 };
60 CandyBar snack = {"Mocha Munch", 2.3, 350};
61 cout << "brand: " << snack.brand << endl
62 << "weight: " << snack.weight << endl
63 << "kll: " << snack.kll << endl;
64 }
65
66 void ch4_6() {
67 using namespace std;
68 struct CandyBar{
69 string brand;
70 double weight;
71 unsigned int kll;
72 };
73 CandyBar snack;
74 cout << "enter brand: ";
75 getline(cin, snack.brand);
76 cout << "enter weight: ";
77 cin >> snack.weight;
78 cout << "enter kll: ";
79 cin >> snack.kll;
80 cout << "brand: " << snack.brand << endl
81 << "weight: " << snack.weight << endl
82 << "kll: " << snack.kll << endl;
83 }
84
85 void ch4_7() {
86 using namespace std;
87 struct Pizza{
88 string brand;
89 double diameter;
90 double weight;
91 };
92 Pizza pizza;
93 cout << "enter brand: ";
94 getline(cin, pizza.brand);
95 cout << "enter weight: ";
96 cin >> pizza.weight;
97 cout << "enter diameter: ";
98 cin >> pizza.diameter;
99 cout << "brand: " << pizza.brand << endl
100 << "weight: " << pizza.weight << endl
101 << "diameter: " << pizza.diameter << endl;
102 }
103
104 void ch4_8() {
105 using namespace std;
106 struct Pizza{
107 string brand;
108 double diameter;
109 double weight;
110 };
111 Pizza * p_pizza = new Pizza;
112 cout << "enter diameter: ";
113 cin >> p_pizza->diameter; cin.get();
114 cout << "enter brand: ";
115 getline(cin, p_pizza->brand);
116 cout << "enter weight: ";
117 cin >> p_pizza->weight;
118 cout << "diameter: " << p_pizza->diameter << endl
119 << "brand: " << p_pizza->brand << endl
120 << "weight: " << p_pizza->weight << endl;
121 }
122
123 void ch4_9() {
124 using namespace std;
125 struct CandyBar{
126 string brand;
127 double weight;
128 unsigned int kll;
129 };
130 CandyBar * snack_arr = new CandyBar[3];
131 snack_arr[0] = {"abc a", 34, 654};
132 snack_arr[1] = {"abc b", 34580, 4363};
133 snack_arr[2] = {"abc c", 756, 67};
134 for (int i = 0; i < 3; ++ i)
135 cout << "brand: " << snack_arr[i].brand << endl
136 << "weight: " << snack_arr[i].weight << endl
137 << "kll: " << snack_arr[i].kll << endl;
138 }
139
140 void ch4_10() {
141 using namespace std;
142 array<double, 3> race;
143 for (int i = 0; i < 3; ++ i){
144 cout << "race: ";
145 cin >> race[i];
146 }
147 for (int i = 0; i < 3; ++ i)
148 cout << "#" << i + 1 << ": " << race[i] << endl;
149 }

欢迎交流

【C++ Primer Plus】编程练习答案——第4章的更多相关文章

  1. 【C++ Primer Plus】编程练习答案——第12章

    1 // chapter12_1_cow.h 2 3 4 #ifndef LEARN_CPP_CHAPTER12_1_COW_H 5 #define LEARN_CPP_CHAPTER12_1_COW ...

  2. 【C++ Primer Plus】编程练习答案——第11章 (待更新)

    最近开学,事情较多,过两天更新...

  3. 【C++ Primer Plus】编程练习答案——第10章

    1 // chapter10_1_account.h 2 3 #ifndef LEARN_CPP_CHAPTER10_1_ACCOUNT_H 4 #define LEARN_CPP_CHAPTER10 ...

  4. 【C++ Primer Plus】编程练习答案——第9章

    1 // chapter09_golf.h 2 3 #ifndef LEARN_CPP_CHAPTER09_GOLF_H 4 #define LEARN_CPP_CHAPTER09_GOLF_H 5 ...

  5. 【C++ Primer Plus】编程练习答案——第8章

    1 void ch8_1_print(const std::string & str, int n = 0 ) { 2 using namespace std; 3 static int fl ...

  6. 【C++ Primer Plus】编程练习答案——第7章

    1 double ch7_1_harmonicaverage(double a, double b) { 2 return 2 / (1 / a + 1 / b); 3 } 4 5 void ch7_ ...

  7. 【C++ Primer Plus】编程练习答案——第6章

    1 void ch6_1() { 2 using namespace std; 3 char ch; 4 while ((ch = cin.get()) != '@') { 5 if (isdigit ...

  8. 【C++ Primer Plus】编程练习答案——第5章

    1 void ch5_1() { 2 using namespace std; 3 int small, big, sum{0}; 4 cout << "enter small ...

  9. 【C++ Primer Plus】编程练习答案——第3章

    1 void ch3_1() { 2 using namespace std; 3 unsigned int factor = 12; 4 unsigned int inch, feet; 5 cou ...

随机推荐

  1. Nacos 服务注册的原理

    Nacos 服务注册需要具备的能力: 服务提供者把自己的协议地址注册到Nacos server 服务消费者需要从Nacos Server上去查询服务提供者的地址(根据服务名称) Nacos Serve ...

  2. 2020年秋游戏开发-flappy bird

    此作业要求参考https://edu.cnblogs.com/campus/nenu/2020Fall/homework/11577 GitHub地址为https://github.com/15011 ...

  3. easyexcel

    导出: package com.example.demo.excel.demo0; import com.alibaba.excel.annotation.ExcelProperty; import ...

  4. Linux系统的ssh与sshd服务

    当主机中开启openssh服务,那么就对外开放了远程连接的接口 ssh为openssh服务的客户端,sshd为openssh服务的服务端 远程管理工具ssh具有数据加密传输.网络开销小以及应用平台范围 ...

  5. iNeuOS工业互联平台,增加OPC UA驱动,同步和订阅方式读取数据

    目       录 1.      概述... 1 2.      平台演示... 2 3.      OPC UA应用效果... 2 1.   概述 最近的项目,用户需要使用OPC UA读取数据,通 ...

  6. Python之sqlite3模块

    python自带有sqlite3模块,该模块可以方便我们操作sqlite数据库,下面一起跟随示例了解sqlite3模块的具体用法. import sqlite3 # 连接数据库 connection ...

  7. 【Python机器学习实战】决策树与集成学习(五)——集成学习(3)GBDT应用实例

    前面对GBDT的算法原理进行了描述,通过前文了解到GBDT是以回归树为基分类器的集成学习模型,既可以做分类,也可以做回归,由于GBDT设计很多CART决策树相关内容,就暂不对其算法流程进行实现,本节就 ...

  8. Docker(34)- 如何修改 docker 容器的目录映射

    如果你还想从头学起 Docker,可以看看这个系列的文章哦! https://www.cnblogs.com/poloyy/category/1870863.html 问题背景 docker run ...

  9. Vue element keyup.enter失效不起作用

    解决方式一 添加按键修饰符@keyup.enter.native 解决方式二 把事件绑定到父元素(外框),需注意多个input问题 <div @keyup.enter="login&q ...

  10. nohup命令的用法

    在应用Unix/Linux时,我们一般想让某个程序在后台运行,于是我们将常会用 & 在程序结尾来让程序自动运行.比如我们要运行mysql在后台: /usr/local/mysql/bin/my ...