思路:
1。 倒序查找 第一个字母的位置 ; 而后倒序统计该字母结尾的单词长度
2。 getline(cin, str);// 取一行字符串
str.size() // 求字符串长度
#include<iostream>
#include<string>
using namespace std;
int main()
{
string str;
getline(cin, str);
int length = 0;
int spaceNum = 0;
for(int i = str.size()-1; i>= 0; i--)
{
if(str[i] == ' ' || (!isalpha(str[i])))
spaceNum ++;
else
break;
}
for(int i = str.size()-spaceNum -1; i>=0; i--)
{
if(str[i] == ' ' || (!isalpha(str[i])))
break;
else
length ++;
}
cout << length << endl;
return 0;
}