计算字符串最后一个单词的长度,单词以空格隔开,字符串长度小于5000。
#include <iostream>
using namespace std;
//获取最后一个单词的长度
int GetlengthOfLastword(const string &s1)
{
int rindex=s1.rfind(' '
计算字符串最后一个单词的长度,单词以空格隔开,字符串长度小于5000。
#include <iostream>
using namespace std;
//获取最后一个单词的长度
int GetlengthOfLastword(const string &s1)
{
int rindex=s1.rfind(' '