hdu1014(随机数)

#include<stdio.h>
int main()
{
    int s,step,mod,i;
    while(scanf("%d%d",&step,&mod)==2)
    {
        s=0;i=0;
        while(1)
        {
            i++;
            s=(s+step)%mod;
            if(s==0)
            break;
        }
        if(i==mod)
        printf("%10d%10d    Good Choice\n\n",step,mod);
        else
        printf("%10d%10d    Bad Choice\n\n",step,mod);
    }
    return 0;
}

你可能感兴趣的:(hdu1014(随机数))