string s19 = "hello, world!";
for(auto c: s19)
{
//输出大写形式
if(!ispunct(c) || !isspace(c))
{
cout << toupper(c);
}
}
这样写打印时是一串数字。而如果像下面这样:
c = toupper(c);
cout << c;
打印时则正确,请问大家这是怎么回事?
string s19 = "hello, world!";
for(auto c: s19)
{
//输出大写形式
if(!ispunct(c) || !isspace(c))
{
cout << toupper(c);
}
}
这样写打印时是一串数字。而如果像下面这样:
c = toupper(c);
cout << c;
打印时则正确,请问大家这是怎么回事?
3 回答2.1k 阅读✓ 已解决
2 回答3.9k 阅读✓ 已解决
3 回答3.5k 阅读
3 回答537 阅读✓ 已解决
1 回答3.3k 阅读
1 回答1.1k 阅读✓ 已解决
1 回答2.2k 阅读
原因很简单。
请注意
toupper
的返回值:http://www.cplusplus.com/reference/cctype/toupper/