#include <iostream>
#include <string>
#include <cctype> //判断大小写,
using namespace std;
int main ()
{
string word;
cout << "Enter some words: (Ctrl+Z to end) " << endl;
while(cin >> word)
{
if(islower(word[0])) //单词的第一个字母是小写,
continue; // 提前结束当前迭代,继续循环,
else //单词的第一个字母是大写,
{
cout << "找到一个大写单词:";
cout << word;
cout << ", 其长度是:" ;
cout << word.size() << endl;
}
}
return 0;
}
continue
最新推荐文章于 2024-10-20 17:36:57 发布