代码改变世界

输出结果有误

2021-07-23 10:06  huqi001  阅读(36)  评论(1编辑  收藏  举报

#include <stdio.h>
#include <windows.h>

double power(double n,int p);
int main(void)
{
double x, xpow;
int exp;
printf("Enter a number and the positive integer power");
printf("to which\nthe number will be raised.Enter q");
printf("to quit.\n");
while (scanf_s("%f%d", &x, &exp) == 2)
{
xpow = power(x,exp);
printf("%.3g to the power %d is %.5g\n",x,exp,xpow);
printf("Enter next pair of numbers or q to quit.\n");
}
printf("Hope you enjoyed this power trip--bye!\n");
//system("pause");
return 0;
}
double power(double n, int p)
{
double pow = 1;
int i;
for (i = 1; i <= p; i++)
pow *= n;
return pow;
}