HJ1 字符串最后一个单词的长度

计算字符串最后一个单词的长度,单词以空格隔开,字符串长度小于5000。(注:字符串末尾不以空格为结尾)

#include 
#include 

using namespace std;

int main()
{
	string s;
	getline(cin,s);
	size_t pos = s.rfind(' ');	
	if (pos == string::npos)
	{
		//没有找到
		cout << s.size() << endl;
	}
    else
    {
        cout << s.size() - pos -1<< endl;
    }	
	return 0;
}

你可能感兴趣的:(牛客,c++,字符串)