【C++ Primer Plus】编程练习答案——第4章
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章的更多相关文章
- 【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 ...
- 【C++ Primer Plus】编程练习答案——第11章 (待更新)
最近开学,事情较多,过两天更新...
- 【C++ Primer Plus】编程练习答案——第10章
1 // chapter10_1_account.h 2 3 #ifndef LEARN_CPP_CHAPTER10_1_ACCOUNT_H 4 #define LEARN_CPP_CHAPTER10 ...
- 【C++ Primer Plus】编程练习答案——第9章
1 // chapter09_golf.h 2 3 #ifndef LEARN_CPP_CHAPTER09_GOLF_H 4 #define LEARN_CPP_CHAPTER09_GOLF_H 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 ...
- 【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_ ...
- 【C++ Primer Plus】编程练习答案——第6章
1 void ch6_1() { 2 using namespace std; 3 char ch; 4 while ((ch = cin.get()) != '@') { 5 if (isdigit ...
- 【C++ Primer Plus】编程练习答案——第5章
1 void ch5_1() { 2 using namespace std; 3 int small, big, sum{0}; 4 cout << "enter small ...
- 【C++ Primer Plus】编程练习答案——第3章
1 void ch3_1() { 2 using namespace std; 3 unsigned int factor = 12; 4 unsigned int inch, feet; 5 cou ...
随机推荐
- 13.SpringMVC之全局异常
我们知道,系统中异常包括:编译时异常和运行时异常RuntimeException,前者通过捕获异常从而获取异常信息,后者主要通过规范代码开发.测试通过手段减少运行时异常的发生.在开发中,不管是dao层 ...
- springcloud starter(一)
Spring Cloud - Getting Started Example, 转载自:https://www.logicbig.com/tutorials/spring-framework/spri ...
- ProjectEuler 006题
题目: The sum of the squares of the first ten natural numbers is, 12 + 22 + ... + 102 = 385 The square ...
- Windows CMD .bat 批处理基础语法
格式 @echo off 代码..... pause 不会逐行将命令打印. rem [注释] 关键字注释. :: [注释] 符号注释. echo 打印到控制台. >> 输出重定向.追加. ...
- Vue.JS快速上手(Vue-router 实现SPA 开发)
一.什么是路由 URL -> 映射 -> 组件 Hash+onhashchange History.pushstate+replaceState+onpopstate 二.准备工作 组件 ...
- redis rpoplpush列表转移元素
文档出处:redisdoc.com/list/rpoplpush.html模式: 安全的队列 Redis的列表经常被用作队列(queue),用于在不同程序之间有序地交换消息(message).一个客户 ...
- ES6 class——音乐播放器实例
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title> ...
- VMware workstation16 中Centos7下MySQL8.0安装过程+Navicat远程连接
1.MySQL yum源安装 2.安装后,首次登录mysql以及密码配置3.远程登录问题(Navicat15为例) 一.CentOS7+MySQL8.0,yum源安装1.安装mysql前应卸载原有my ...
- 文件权限的管理以及acl权限列表
ls -l? 文件名称 上面的命令以长格式显示文件与目录,每一行都是一个文件或目录的属性数据,每个文件或子目录的属性数据又以7个字段显示,各个字段的说明如下: (1)文件类型与权限:该字段共有10个字 ...
- 操作系统IO之零拷贝技术
磁盘可以说是计算机系统最慢的硬件之一,读写速度相差内存 10 倍以上,所以针对优化磁盘的技术非常的多,比如零拷贝.直接 I/O.异步 I/O 等等,这些优化的目的就是为了提高系统的吞吐量,另外操作系统 ...