题解 | #大整数的因子#

大整数的因子

http://www.nowcoder.com/practice/3d6cee12fbf54ea99bb165cbaba5823d

判断大整数能否被整除,直接用字符串从最高位开始取余即可


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

bool isDividable(string num,int divider){
    int total = 0;
    for(int i=0;i<num.size();i++){
        int digit = num[i]-'0';
        total *= 10;
        total += digit;
        total %= divider;
    }
    return total==0;
}

int main(){
    
    string c;
    while(cin>>c){
        if(c=="-1") break;
        
        bool first = true;
        for(int i=2;i<=9;i++){
            if(isDividable(c,i)){
                if(first){
                    first = false;
                } else {
                    cout<<" ";
                }
                cout<<i;
            }
        }
        if(first) cout<<"none";
        cout<<endl;
    }
    
    
    return 0;
}


全部评论

相关推荐

11-18 09:44
Java
小白也想要offer:简历别放洋屁,搞不还还放错了,当然你投外企除外,以上纯属个人观点
点赞 评论 收藏
分享
1 收藏 评论
分享
牛客网
牛客企业服务