题解 | #字符串最后一个单词的长度#
字符串最后一个单词的长度
http://www.nowcoder.com/practice/8c949ea5f36f422594b306a2300315da
#include<string>
using namespace std;
int main()
{
string s;
int cnt = 0;
int i = 0;
getline(cin, s);
for (int i = 0; i < s.length(); i++)
{
if (s[i] == ' ')
{
cnt = 0;
}
else if (s[i] != ' ')
{
cnt++;
}
}
cout << cnt << endl;
}
输入字符串,然后遍历,遇到空格就把计数器清空,最后得到最后一个单词的长度。