关于求解结果的疑问
#include "stdio.h"main()
{ float fn(float,int);
int n;
float s;
float x;
scanf("%f",&x);
scanf("%d",&n);
s=fn(n,x);
printf("%3.1f",s);
getch();
}
float fn(float x,int n)
{ float s=1;
int i;
for(i=1;i<=n;i++)
s=x*s;
return(s);
}
本题求的是X的N次方。但是程序运行的结果是四舍五入后的结果。如1.2的2次方是2.0,请问程序错在哪?