求A^B的最后三位数表示的整数。
说明:A^B的含义是“A的B次方”
标签:scan 题目 else mat for include ext clu 描述
2 3
12 6
6789 10000
0 0
8
984
1
注意求后三位,在每次进行乘的时候都需要%1000,否则最后%1000,会超范围
#include <stdio.h> #include <math.h> int main(){ int a,b; int temp; while(scanf("%d %d",&a,&b)!=EOF){ if(a!=0&&b!=0){ temp=a; for(int i=1;i<=b-1;i++) a=a*temp%1000; printf("%d\n",a); } else break; } return 0; }
标签:scan 题目 else mat for include ext clu 描述
原文地址:https://www.cnblogs.com/PerZhu/p/11588410.html