#include<iostream>
#include<string>
//using namespace std;
using std::cout;
using std::string;
using std::endl;
int main()
{
string a{"hello"};
for (auto &temp : a)
temp = 'X';
cout << a << endl;
return 0;
}
C++ primer 第五版 练习3.6 答案
最新推荐文章于 2022-09-04 10:37:28 发布