【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 ...
随机推荐
- 基于mysql和Java Swing的简单课程设计
摘要 现代化的酒店组织庞大.服务项目多.信息量大.要想提高效率.降低成本.提高服务质量和管理水平,进而促进经济效益,必须利用电脑网络技术处理宾馆酒店经营数据,实现酒店现代化的信息管理.本次课程设计运用 ...
- Vue.JS快速上手(Vue-router 实现SPA 开发)
一.什么是路由 URL -> 映射 -> 组件 Hash+onhashchange History.pushstate+replaceState+onpopstate 二.准备工作 组件 ...
- 再过五分钟,你就懂 HTTP 2.0 了!
Hey guys ,各位小伙伴们大家好,这里是程序员 cxuan,欢迎你收看我最新一期的文章. 这篇文章我们来聊一聊 HTTP 2.0,以及 HTTP 2.0 它在 HTTP 1.1 的基础上做了哪些 ...
- 使用 & 进行高效率取余运算
Java的HashMap源码中用到的(n-1)&hash这样的运算,这是一种高效的求余数的方法 结论:假设被除数是x,对于除数是2n的取余操作x%2n,都可以写成x&(2n-1),位运 ...
- MyBatis学习总结(四)——字段名与实体类属性名不相同的冲突的解决
表中的字段名和表对应实体类的属性名称不一定都是完全相同的,这种情况下的如何解决字段名与实体类属性名不相同的冲突.如下所示: 一.准备演示需要使用的表和数据 CREATE TABLE my_user( ...
- 20210819 Emotional Flutter,Medium Counting,Huge Counting,字符消除2
考场 T1 一下想到了这题,将白块缩短 \(s\) 后维护类似的区间即可. T2 T3 俩计数,直接跳了. T4 的可行 \(t\) 集合相同相当与从 \(n\) 往前跳 kmp 数组,途径点相同,从 ...
- shell脚本中的多行注释
shell 中注释的使用方法 1. 单行注释 单行注释最为常见,它是通过一个'#'来实现的.注意shell脚本的最开始部分"#!/bin/bash"的#号不是用来注释的. 2. 多 ...
- Jsoup快速查询
一.selector选择器 二.Xpath查询
- table头部固定,内容滚动,类似新闻一下向上滚动
html: <div class="ul_box"> <table class="table1"> <thead> < ...
- ysoserial CommonsColletions3分析(2)
上篇文章讲到CC3的TransformedMap链,这篇我们就来讲一下LazyMap链. 其实LazyMap链还是使用的TemplatesImpl承载payload,InstantiateTransf ...