andre_joy

导航

hdu 2117

地址:http://acm.hdu.edu.cn/showproblem.php?pid=2117

题意:找1/n小数点后第m位数字。

mark:wa了一次。。没考虑n = 1的情况。。。

代码:

#include <stdio.h>

int main()
{
    int n,m;
    int i,re;
    while(~scanf("%d%d", &n, &m))
    {
        if(n == 1) {printf("0\n");continue;}
        re = 10;
        for(i = 1; i < m; i++)
            re = (re%n)*10;
        printf("%d\n", re/n);
            
    }
    return 0;
}

posted on 2012-07-11 22:30  andre_joy  阅读(94)  评论(0编辑  收藏  举报