题目描述:
代码详解(对题目的解释详见相应代码的注释) :
#include<iostream>
using namespace std;
#include<vector>
#include<string>
//函数1,判断string对象是否含有大写字母,无需改变对象的值,所以使用常量引用
bool has_Upper(const string& s)
{
bool ret = false;
for (auto c : s)
{
if (isupper(c))
{
ret = true;
break;
}
}
return ret;
}
//函数2,把string对象全部改成小写形式,需要改变对象的值,使用不含const的引用。因为要改变对象的值,所以必须使用引用
void to_Lower(string& s)
{
for (auto c = s.begin(); c != s.end(); ++c)
{
*c = tolower(*c);
}
}
void test03()
{
//1.创建string对象
string s = "cgbweio;Fhbw9p;";
//2.验证函数1(有一个大写字母F,输出结果为1)
cout << has_Upper(s) << endl;
//3.验证函数2(有一个大写字母F,调用函数后变为小写字母f)
to_Lower(s);
cout << s << endl;
}
int main()
{
test03();
system("pause");
return 0;
}
编译工具:Visual Studio 2019
运行结果:
?
|