牛客网刷题2——字符串最后一个单词的长度
程序员文章站
2022-03-06 11:01:08
...
题目
解
#include <iostream>
#include <string>
using namespace std;
int main()
{
string s;
while(cin>>s)
{
}
cout<<s.length();
return 0;
}