洛谷B2075幂的末尾
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了洛谷B2075幂的末尾相关的知识,希望对你有一定的参考价值。
#include<stdio.h>
#include<math.h>
int main()
int a, b;
scanf("%d %d", &a, &b);
int ret = a;
for (int i = 0; i < b - 1; i++)
ret *= a;
ret %= 1000;//如果是4位数这个命令就会生效,取后三位数
if (ret == 0)printf("000");
else if (ret < 10)printf("00%d\\n", ret);
else if (ret < 100)printf("0%d\\n", ret);
else printf("%d\\n", ret);
return 0;
以上是关于洛谷B2075幂的末尾的主要内容,如果未能解决你的问题,请参考以下文章