计蒜客 难题题库 012 最后一个单词的长度

给定由大写,小写字母和空格组成的字符串,返回最后一个单词的长度。

如果不存在最后一个单词,返回0

注意:

   “单词”是指不包含空格符号的字符串

例如:

   s = “hello World”, 那么返回的结果是5

格式:

   第一行输入字符串s,然后输出s中最后一个单词的长度。

样例1

输入:

Today is a nice day

输出:

3


#include<iostream>
#include<string>
using namespace std;

bool isAlpha(char c){
    return c >= 'a' && c <= 'z' || c >= 'A' && c <= 'Z';
}

int main(){
    string s;
    getline(cin, s);
    int n = s.length();
    int i = n - 1;
    while(i >= 0 && !isAlpha(s[i])){
        --i;
    }
    int count = 0;
    while(i >= 0 && isAlpha(s[i])){
        --i;
        ++count;
    }
    cout << count << endl;
}


你可能感兴趣的:(OJ,计蒜客)