#include <stdio.h> int main(int argc, char *argv[]) { int x,y,a = 1; printf("input x y(x^y):"); scanf("%d %d",&x,&y); int i; for(i = 1;i<=y;i++) { a=a*x; } printf("%d\n",a); int x1,x2,x3; x1 = a-(a/10)*10; x2 = (a-(a/100)*100)/10; x3 = (a-(a/1000)*1000)/100; printf("result:%d %d %d\n",x3,x2,x1); return 0; }
13.任意次方后的后三位
Posted aidongshu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了13.任意次方后的后三位相关的知识,希望对你有一定的参考价值。
以上是关于13.任意次方后的后三位的主要内容,如果未能解决你的问题,请参考以下文章
LightOJ - 1282 -Leading and Trailing