习题答案目录:https://www.cnblogs.com/Mered1th/p/10485695.html

第3章 字符串、向量和数组


练习3.2

一次读入一整行

#include<iostream>
#include<string>
using namespace std;
int main() {
        string a;
        while (getline(cin, a)) {
               cout << a << endl;
        }
        return 0;
}

一次读入一个词

#include<iostream>
#include<string>
using namespace std;
int main() {
        string a;
        while (cin>>a) {
               cout << a << endl;
        }
        return 0;
}

练习3.4

#include<iostream>
#include<string>
using namespace std;
int main() {
string a, b;
cin >> a >> b;
if (a != b) {
cout << (a >= b ? a : b);
}
return 0;
}

练习3.5

#include<iostream>
#include<string>
using namespace std;
int main() {
string ans,a;
while (cin >> a) {
ans += a;
}
cout << ans << endl;
system("pause");
return 0;
}
#include<iostream>
#include<string>
using namespace std;
int main() {
string ans,a;
while (cin >> a) {
ans += a;
ans += " ";
}
cout << ans << endl;
system("pause");
return 0;
}

练习3.6

利用C++11新特性范围for语句,注意要修改字符串必须加上&引用

#include<iostream>
#include<string>
#include<cctype>
using namespace std;
int main() {
string t;
cin >> t;
for (auto &i : t) {
i = 'X';
}
cout << t << endl;
system("pause");
return 0;
}

练习3.7

改为char后结果一样,因为修改的时候就是按字符修改的。

练习3.8

for循环

#include<iostream>
#include<string>
#include<cctype>
using namespace std;
int main() {
string t;
cin >> t;
for (int i = 0;i < t.size();i++) {
t[i] = 'X';
}
cout << t << endl;
system("pause");
return 0;
}

while循环

#include<iostream>
#include<string>
#include<cctype>
using namespace std;
int main() {
string t;
cin >> t;
int i = 0;
while (i < t.size()) {
t[i] = 'X';
i++;
}
cout << t << endl;
system("pause");
return 0;
}

显然已知循环次数,for循环更好用些。

练习3.9

不合法,s是空字符串。

练习3.10

#include<iostream>
#include<string>
#include<cctype>
using namespace std;
int main() {
string t,ans;
cin >> t;
for (char &i : t) {
if (!ispunct(i)) {
ans += i;
}
}
cout << ans << endl;
system("pause");
return 0;
}

练习3.11

如果循环中修改字符串的值,不合法。

练习3.14

#include<iostream>
#include<vector>
using namespace std;
int main() {
vector<int> ans;
int temp;
while (cin >> temp) {
ans.push_back(temp);
}
return 0;
}

练习3.15

#include<iostream>
#include<vector>
#include<string>
using namespace std;
int main() {
vector<string> ans;
string temp;
while (cin >> temp) {
ans.push_back(temp);
}
return 0;
}

练习3.17

#include<iostream>
#include<vector>
#include<string>
using namespace std;
int main() {
vector<string> ans;
string temp;
while (cin >> temp) {
ans.push_back(temp);
}
for (string &i : ans) {
for (char &j : i) {
if (islower(j)) {
j = toupper(j);
}
}
cout << i << endl;
}
system("pause");
return 0;
}

练习3.18

不合法,规定只能对确知已存在的元素执行下标操作!

练习3.19

vector<int> val1{ 42, 42, 42, 42, 42, 42, 42, 42, 42, 42};
vector<int> val2(10,42);
vector<int> val3 = val2;

练习3.20

#include<iostream>
#include<vector>
#include<string>
using namespace std;
int main() {
vector<int> t;
int temp;
while (cin >> temp) {
t.push_back(temp);
}
int len = t.size();
for (int i = 0;i < len; i++) {
cout << t[i] + t[i + 1] << endl;
i++;
}
system("pause");
return 0;
}
#include<iostream>
#include<vector>
#include<string>
using namespace std;
int main() {
vector<int> t;
int temp;
while (cin >> temp) {
t.push_back(temp);
}
int len = t.size();
for (int i = 0;i < len; i++) {
cout << t[i] + t[len - i - 1] << endl;
i++;
}
system("pause");
return 0;
}

练习3.23

#include<iostream>
#include<vector>
#include<string>
using namespace std;
int main() {
vector<int> res = {1,2,3,4,5,6,7,8,9,10};
for (auto it = res.begin();it != res.end();it++) {
*it = (*it) * 2;
}
for (auto i : res) {
cout << i << endl;
}
system("pause");
return 0;
}

练习3.24

#include<iostream>
#include<vector>
#include<string>
using namespace std;
int main() {
vector<int> t;
int temp;
while (cin >> temp) {
t.push_back(temp);
}
for (auto it = t.begin();it != t.end(); it++) {
cout << (*it) + *(it+1) << endl;
it++;
}
system("pause");
return 0;
}

练习3.25

#include<iostream>
#include<vector>
#include<string>
using namespace std;
int main() {
vector<unsigned> scores(11, 0);
unsigned grade;
while (cin >> grade) {
if (grade <= 100) {
auto it = scores.begin();
++*(it + grade / 10);
}
}
for (auto i : scores) {
cout << i << endl;
}
system("pause");
return 0;
}

练习3.26

两迭代器不能直接相加。迭代器的运算见P111

练习3.27

a.非法,数组大小应该为常量

b.合法

c.非法,返回值不是常量

d.非法,数组大小开小了

练习3.28

分别为空、0、空、随机值

练习3.29

数组大小不够灵活,不能往其中增加元素

练习3.30

去掉for循环中的等于号

练习3.31

#include<iostream>
#include<vector>
#include<string>
using namespace std;
int main() {
int a[10];
for (int i = 0;i < 10;i++) {
a[i] = i;
}
for (int i = 0;i < 10;i++) {
cout << a[i] << endl;
}
system("pause");
return 0;
}

练习3.32

#include<iostream>
#include<vector>
#include<string>
using namespace std;
int main() {
vector<int> a(10);
for (int i = 0;i < 10;i++) {
a[i] = i;
}
for (int i = 0;i < 10;i++) {
cout << a[i] << endl;
}
system("pause");
return 0;
}

练习3.33

不初始化会出现随机数字。

练习3.35

#include<iostream>
#include<vector>
#include<string>
using namespace std;
int main() {
int a[10] = { 0,1,2,3,4,5,6,7,8,9 };
int *p = a;
for (int i = 0;i < 10;i++) {
*(a + i) = 0;
}
for (int i = 0;i < 10;i++) {
cout << a[i];
}
system("pause");
return 0;
}

练习3.36

bool isEqual(int a[], int m,int b[],int n) {
if (m != n) return false;
for (int i = 0;i < m;i++) {
if (a[i] != b[i]) {
return false;
}
}
return true;
}
bool isEqual(vector<int> a, vector<int> b) {
if (a == b) return true;
else return false;
}

练习3.37

输出hello但后面跟了乱码,因为没有结束字符

练习3.38

地址相加没有意义

练习3.39

#include<iostream>
#include<vector>
#include<string>
using namespace std;
int main() {
string s1 = "A string example";
string s2 = "A different string";
if (s1 < s2) cout << "s1<s2";
else if (s1 == s2)cout << "s1=s2";
else cout << "s1>s2";
system("pause");
return 0;
}
#include<iostream>
#include<vector>
#include<string>
using namespace std;
int main() {
const char s1[] = "A string example";
const char s2[] = "A different string";
if (strcmp(s1, s2) < 0) cout << "s2>s1";
else if (strcmp(s1, s2) == 0) cout << "s1=s2";
else cout << "s1>s2";
system("pause");
return 0;
}

练习3.40

#include<iostream>
#include<vector>
#include<cstring>
using namespace std;
int main() {
char a[100] = "A example";
char b[100] = "A string";
char c[200];
strcpy_s(c, a);
char *pc = c;
while (*pc) {
cout << *pc;
pc++;
}
cout << endl; strcat_s(c, " ");
pc = c;
while (*pc) {
cout << *pc;
pc++;
}
cout << endl; strcat_s(c, b);
pc = c;
while (*pc) {
cout << *pc;
pc++;
}
cout << endl;
system("pause");
return 0;
}

练习3.41

#include<iostream>
#include<vector>
#include<cstring>
using namespace std;
int main() {
int a[10] = { 0,1,2,3,4,5,6,7,8,9 };
vector<int> t(begin(a), end(a));
for (auto i : t) {
cout << i;
}
system("pause");
return 0;
}

练习3.42

#include<iostream>
#include<vector>
#include<cstring>
using namespace std;
int main() {
vector<int> t(10,1);
int b[10];
for (int i = 0;i < 10;i++) {
b[i] = t[i];
}
system("pause");
return 0;
}

练习3.43

#include<iostream>
#include<vector>
#include<cstring>
using namespace std;
int main() {
int ia[3][4] = {
{0,1,2,3},
{4,5,6,7},
{8,9,10,11}
}; for (const int(&i)[4] : ia) {
for (int j : i) {
cout << j << " ";
}
}
cout << endl; for (size_t i = 0;i < 3;i++) {
for (size_t j = 0;j < 4;j++) {
cout << ia[i][j] << " ";
}
}
cout << endl; for (int(*i)[4] = begin(ia);i != end(ia);i++) {
for (int *j = begin(*i);j != end(*i);j++) {
cout << *j << " ";
}
}
cout << endl;
system("pause");
return 0;
}

练习3.44

#include<iostream>
#include<vector>
#include<cstring>
using namespace std;
int main() {
typedef int int_array[4];
int ia[3][4] = {
{0,1,2,3},
{4,5,6,7},
{8,9,10,11}
}; for (const int_array &i : ia) {
for (int j : i) {
cout << j << " ";
}
}
cout << endl; for (size_t i = 0;i < 3;i++) {
for (size_t j = 0;j < 4;j++) {
cout << ia[i][j] << " ";
}
}
cout << endl; for (int_array *i = begin(ia);i != end(ia);i++) {
for (int *j = begin(*i);j != end(*i);j++) {
cout << *j << " ";
}
}
cout << endl;
system("pause");
return 0;
}

练习3.45

#include<iostream>
#include<vector>
#include<cstring>
using namespace std;
int main() {
typedef int int_array[4];
int ia[3][4] = {
{0,1,2,3},
{4,5,6,7},
{8,9,10,11}
}; for (auto &row : ia) {
for (auto &col : row) {
cout << col << " ";
}
}
cout << endl; for (size_t i = 0;i < 3;i++) {
for (size_t j = 0;j < 4;j++) {
cout << ia[i][j] << " ";
}
}
cout << endl; for (auto *i = begin(ia);i != end(ia);i++) {
for (auto *j = begin(*i);j != end(*i);j++) {
cout << *j << " ";
}
}
cout << endl;
system("pause");
return 0;
}

C++Primer第五版——习题答案详解(二)的更多相关文章

  1. C++Primer第五版——习题答案详解(一)

    习题答案目录:https://www.cnblogs.com/Mered1th/p/10485695.html 第1章 开始&&第2章 变量和基本类型 练习1.3 #include&l ...

  2. C++Primer第五版——习题答案详解(三)

    习题答案目录:https://www.cnblogs.com/Mered1th/p/10485695.html 第4章 表达式 练习4.10 while(cin>>i&&i ...

  3. C++Primer第五版——习题答案详解(四)

    习题答案目录:https://www.cnblogs.com/Mered1th/p/10485695.html 第5章 语句 练习5.9 #include<iostream> #inclu ...

  4. C++Primer第五版——习题答案详解(五)

    习题答案目录:https://www.cnblogs.com/Mered1th/p/10485695.html 第6章 函数 练习6.4 #include<iostream> using ...

  5. C++Primer第五版——习题答案详解(六)

    习题答案目录:https://www.cnblogs.com/Mered1th/p/10485695.html 第7章 类 练习7.1 class Sales_data { public: std:: ...

  6. C++Primer第五版——习题答案详解(七)

    习题答案目录:https://www.cnblogs.com/Mered1th/p/10485695.html 第8章 IO库 练习8.1 istream &iofunc(istream &a ...

  7. C++Primer第五版——习题答案详解(八)

    习题答案目录:https://www.cnblogs.com/Mered1th/p/10485695.html 第9章 顺序容器 练习9.1 a.list,需要按字典序插入,可能插入位置在中间 b.d ...

  8. C++Primer第五版——习题答案详解(九)

    习题答案目录:https://www.cnblogs.com/Mered1th/p/10485695.html 第10章 泛型算法 练习10.1 #include<iostream> #i ...

  9. C++Primer第五版——习题答案详解(十)

    习题答案目录:https://www.cnblogs.com/Mered1th/p/10485695.html 第11章 关联容器 练习11.3 #include<iostream> #i ...

随机推荐

  1. django中form组件

    Form介绍 我们之前在HTML页面中利用form表单向后端提交数据时,都会写一些获取用户输入的标签并且用form标签把它们包起来. 与此同时我们在好多场景下都需要对用户的输入做校验,比如校验用户是否 ...

  2. MapRedcue的demo(协同过滤)

    MapRedcue的演示(协同过滤) 做一个关于电影推荐.你于你好友之间的浏览电影以及电影评分的推荐的协同过滤. 百度百科: 协同过滤简单来说是利用某兴趣相投.拥有共同经验之群体的喜好来推荐用户感兴趣 ...

  3. web前端性能优化总结一

    转自:http://www.2cto.com/kf/201604/498725.html 网站的划分一般为二:前端和后台.我们可以理解成后台是用来实现网站的功能的,比如:实现用户注册,用户能够为文章发 ...

  4. mysql查询出相同数据出现的次数,统计相同值的数量

    1.可以使用count SELECT count(name='A' OR NULL) FROM table 2.用sum SELECT sum(if( = 'A', 1, 0)) FROM table ...

  5. Forth相关IO操作

    body, table{font-family: 微软雅黑} table{border-collapse: collapse; border: solid gray; border-width: 2p ...

  6. 超哥教你发布CRM

    发布CRM你将使用以下软件 nginx uWSGI CentOS7 CRM项目文件 virtualenv supervisor WSGI.uWSGI python web服务器开发使用WSGI协议(W ...

  7. 剑指Offer 14. 链表中倒数第k个结点 (链表)

    题目描述 输入一个链表,输出该链表中倒数第k个结点. 题目地址 https://www.nowcoder.com/practice/529d3ae5a407492994ad2a246518148a?t ...

  8. ArcGIS 按多边形区域统计栅格影像的一些信息

    在使用ArcGIS对栅格影像进行分析时,难免要进行一些统计类的分析.如统计框选区域的像素的个数,面积.均值等内容. 下面给出使用“Spatial Analyst Tools -- > Zonal ...

  9. 冒泡排序到k趟

    浙大pat题目 将N个整数按从小到大排序的冒泡排序法是这样工作的:从头到尾比较相邻两个元素,如果前面的元素大于其紧随的后面元素,则交换它们.通过一遍扫描,则最后一个元素必定是最大的元素.然后用同样的方 ...

  10. spring boot 项目无法访问静态页面