大整数因子

Posted tp25959

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了大整数因子相关的知识,希望对你有一定的参考价值。

原题链接:点我转移

#include<bits/stdc++.h>
using namespace std;
int main()
{
    char c[31];
    while(cin>>c)
    {
        int len = strlen(c), flag = 0;
        for(int i = 2; i <= 9; i++)
        {
            int yushu = 0;
            for(int j = 0; j < len; j++)///对于这里建议列竖式进行计算,就能看出余数的秘密(>^ω^<)喵
            {
                yushu = (yushu * 10 + (c[j] - 0)) % i;
            }
            if(yushu == 0)///看最后的余数是不是0是0就说明能整除
            {
                flag = 1;
                cout << i << " ";
            }
        }
        if(flag == 0)
            cout << "none";
        cout<<endl;
    }
    return 0;
}
#include<bits/stdc++.h>
using namespace std;
int main()
{
    char c[31];
    while(cin>>c)
    {
        int len = strlen(c), flag = 0;
        for(int i = 2; i <= 9; i++)
        {
            int yushu = 0;
            for(int j = 0; j < len; j++)///对于这里建议列竖式进行计算,就能看出余数的秘密(>^ω^<)喵
            {
                yushu = (yushu * 10 + (c[j] - 0)) % i;
            }
            if(yushu == 0)///看最后的余数是不是0是0就说明能整除
            {
                flag = 1;
                cout << i << " ";
            }
        }
        if(flag == 0)
            cout << "none";
        cout<<endl;
    }
    return 0;
}

 

以上是关于大整数因子的主要内容,如果未能解决你的问题,请参考以下文章

大整数的因子

13:大整数的因子

13:大整数的因子

大整数因子(高精mod)

13:大整数的因子(NOIP)

大整数因子