C++ ---字符串最后一个单词长度
Posted L_add
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++ ---字符串最后一个单词长度相关的知识,希望对你有一定的参考价值。
字符串最后一个单词长度
题目描述:
题目来源:牛客
#include <iostream>
#include <string>
using namespace std;
int main()
{
string s;
//cin >> s
//cin 一遇到空格就不输入
getline(cin,s);
size_t pos = s.rfind(' ');
if(pos != string::npos)
{
cout<<s.size()-pos-1<<endl;
}
else
{
cout<<s.size()<<endl;
}
}
以上是关于C++ ---字符串最后一个单词长度的主要内容,如果未能解决你的问题,请参考以下文章