题解 | #字符串最后一个单词的长度#
字符串最后一个单词的长度
https://www.nowcoder.com/practice/8c949ea5f36f422594b306a2300315da
#include <iostream>
#include<string>
using namespace std;
int main() {
string test;
while (getline(cin,test)) { // 注意 while 处理多个 case
int pos=test.rfind(' ');
string s=test.substr(pos+1);
cout<<s.size()<<endl;
}
}
// 64 位输出请用 printf("%lld")
牛客网刷题记录 文章被收录于专栏
本人认为值得记录的一些题


