美文网首页
分离自然数

分离自然数

作者: 极速魔法 | 来源:发表于2017-06-18 21:51 被阅读6次
    #include <iostream>
    #include <vector>
    
    using namespace std;
    
    class Solution{
    public:
    vector<int> divideNum(int n){
            int sum=0;
            vector<int> res;
    
            while(n/10>0) {
                //div store ge shi bai...
                int div = n % 10;
                res.push_back(div);
                //update n
                n = n / 10;
            }
    
            if(n/10==0){
                //0-9;
                res.push_back(n);
            }
            return res;
        }
    };
    
    int main(){
        int n=12309;
        vector<int> vec=Solution().divideNum(n);
        for(int i=0;i<vec.size();i++){
            cout<<vec[i]<<" ";
        }
        cout<<endl;
        return 0;
    }
    
    

    相关文章

      网友评论

          本文标题:分离自然数

          本文链接:https://www.haomeiwen.com/subject/dvewqxtx.html