首页 > 其他 > 详细

Length of Last Word

时间:2014-11-05 21:10:03      阅读:294      评论:0      收藏:0      [点我收藏+]

比较简单的问题:

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

int main()
{
    int lengthOfLastWord(const char *s);
    char a[20];
    cin.getline(a,20);
    cout << lengthOfLastWord(a) << endl;
}

int lengthOfLastWord(const char *s) {
        int i=0,new_word=0,last_length=0;
        while(s[i]!=\0){
            if(s[i]== )
                new_word=1;
            else if(new_word==1 && s[i]!= ){
                last_length=1;
                new_word=0;
            }
            else{
                ++last_length;
            }
            ++i;
        }
        return last_length;
    };

 

Length of Last Word

原文:http://www.cnblogs.com/iois/p/4077196.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!