码迷,mamicode.com
首页 > 其他好文 > 详细

表示数值的字符串

时间:2016-04-29 14:15:11      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:

 

class Solution {
public:
    bool isNum(char *ch)
        {
        if(*ch<=9&&*ch>=0)
            return true;
        else return false;
    }
    bool isNumeric(char* string)
    {
        if(string==NULL)
            return false;
        if(*string==+||*string==-)
            string++;
        if(*string==\0)
                return false;
        while(*string!=\0)
            {
            if(*string==.||*string==e||*string==E)
                 break;
             else if(isNum(string))
                 string++;
                else return false;
             
        }
        if(*string==.)
            {
            string++;
  
            while(*string!=\0)
            {
             if(isNum(string))
                 string++;
             else if(*string==e||*string==E) 
                 break;
                 else return false;
        }
        }
        if(*string==e||*string==E)
            {
            string++;
            if(*string==\0)
                return false;
            if(*string==+||*string==-)
            string++;
            if(*string==\0)
                return false;
             while(*string!=\0)
            {
                if(isNum(string))
                 string++;
                else return false;    
        }
            
        }
        return true;
    }

};

 

表示数值的字符串

标签:

原文地址:http://www.cnblogs.com/daocaorenblog/p/5445820.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!