HDOJ2099_整數的尾數

一道我覺得不會這麼簡單,而後暴力盲打居然給過了的題。php

HDOJ2099_整數的尾數code

#include<stdio.h>
#include<stdlib.h>
#include<ctype.h>
#include<math.h>

int main()
{
    int a,b,n;
    int i,j;
    while(scanf("%d %d",&a,&b)!=EOF)
    {
        int n2[100];
        int cnt=0;
        if(a==0&&b==0)
        {
            break;
        }
        for(i=0;i<=99;i++)
        {
            if((a*100+i)%b==0)
            {
                n2[cnt++]=i;
            }
        }
        for(i=0;i<cnt;i++)
        {
            printf("%02d",n2[i]);
            i==cnt-1?printf("\n"):printf(" ");
        }
    }
    return 0;
}

思路

很簡單,就是對最後的兩位數進行0~99的遍歷一遍,找出全部的可能就OK了。blog

相關文章
相關標籤/搜索