076.计算高次方数的尾数
Posted 程序员编程指南
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了076.计算高次方数的尾数相关的知识,希望对你有一定的参考价值。
#include<stdio.h>
void main()
int i,x,y,last=1; /*变量last保存求X的Y次方过程中的部分乘积的后三位*/
clrscr();
puts("**********************************************************");
puts("* This is a program to calculate the last 3 digits of *");
puts("* high order value, e.g., 13^15. *");
puts("**********************************************************");
printf("\\n >> Input X and Y(X^Y): ");
scanf("%d%d",&x,&y);
for(i=1;i<=y;i++) /*X自乘Y次*/
last=last*x%1000; /*将last乘X后对1000取模,即求积的后三位*/
printf("\\n >> The last 3 digits of %d^%d is: %d\\n",x,y,last%1000); /*打印结果*/
puts("\\n >> Press any key to quit...");
getch();
以上是关于076.计算高次方数的尾数的主要内容,如果未能解决你的问题,请参考以下文章