欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

[华为机试练习题]19.字符串最后一个单词的长度

程序员文章站 2022-04-05 11:49:41
...

题目

[华为机试练习题]19.字符串最后一个单词的长度

代码

/*---------------------------------------
*   日期:2015-06-30
*   作者:SJF0115
*   题目:字符串最后一个单词的长度
*   来源:华为上机
-----------------------------------------*/
#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
using namespace std;

int LastWordLength(string str){
    int size = str.size();
    if(size == 0){
        return 0;
    }//if
    // 去除后导0
    int end = size - 1;
    while(end >= 0 && str[end] == ' '){
        --end;
    }//while
    int len = 0;
    while(end >= 0 && str[end] != ' '){
        ++len;
        --end;
    }//while
    return len;
}

int main(){
    string str;
    //freopen("C:\\Users\\Administrator\\Desktop\\c++.txt","r",stdin);
    while(getline(cin,str)){
        cout<<LastWordLength(str)<<endl;
    }//while
    return 0;
}