#include这里还有错误,看来程序今天还是发布不了。
回去睡觉,明晚在做。
回去睡觉,明晚在做。
为了防止世界被破坏,为了守护世界的和平,贯彻爱与真实的邪恶,可爱又迷人的反派角色,VxWorks!
Don't ask me any question.I'm just here to buy soy sauce.
#include <stdio.h> #include <math.h> float a[10],b[10];//建议使用浮点型 void f1(int x,int n) { a[n]=pow(x,n); } void f2(int n) { b[n] = n==0?1:n*b[n-1]; } int main() { int x,n ; float sum=0 ; printf("Enter the number:"); scanf("%d",&x); //语法错误 for (n=0;n<=9;n++) { f1(x,n); f2(n); //逻辑性错误 sum+=a[n]/b[n];//既然都是浮点型,自然不需要转换了 } printf("%f",sum); return 0; }GCC下编译运行通过。