题解 | #简单密码#
字符串最后一个单词的长度
http://www.nowcoder.com/practice/8c949ea5f36f422594b306a2300315da
#include <iostream>
#include <string>
using namespace std;
int main() {
string str;
while(cin>>str); // 收到空格就进入下一次, 直到结束, str存的就是最后一个单词
cout << str.length() << endl;
return 0;
}