C++Primer第五版:练习3.6 3.7 3.8 3.9 3.10 3.11

练习3.6

int main()
{
	string s = "Hello world!";

	for (auto& c : s)
		c = 'X';
	cout << s << endl;
}

练习3.7

auto关键字类型为char,结果不变

练习3.8

int main()
{
	string s = "Hello world!";

	for (string::size_type i = 0; i != s.size(); ++i)
		s[i] = 'X';

	string::size_type i = 0;
	while (i != s.size())
		s[i++] = 'X';
}

我认为for循环更好,更加直观方便

练习3.9
不合法,string默认初始化是一个空串,下标超出范围

练习3.10

#include<iostream>
#include<cctype>
using namespace std;

int main()
{
	string s = "Hello world!";

	for (auto& c : s)
		if (ispunct(c))
			c = ' ';
	cout << s << endl;
}

练习3.11
合法,c的类型为char&
可以访问但不能改值

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值