码迷,mamicode.com
首页 > 其他好文 > 详细

------__________________________9余数定理-__________ 1163______________

时间:2015-12-04 12:50:04      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:

#include<stdio.h>
int main()
{
    int i,s,a,t,n;
    while(scanf("%d",&t),t)
    {
        s=t;
        for(i=1;i<t;i++)
        {
            s=(s*t)%9;
        }
        if(s==0)
            printf("9\n");
        else
            printf("%d\n",s);
    }
    return 0;
}

 

------__________________________9余数定理-__________ 1163______________

标签:

原文地址:http://www.cnblogs.com/A-FM/p/5018845.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!