输入1 个正整数n,计算 s 的前n 项的和(保留 4 位小数).要求定义并调用函数fact(n

日期:2015-06-10 19:18:40 人气:1

输入1 个正整数n,计算 s 的前n 项的和(保留 4 位小数).要求定义并调用函数fact(n

#include int main() { int n; void fact(int n); printf("enter a number:\n"); scanf(" %d",&n); fact(n); } void fact(int n) { int i,j; double t=1,s; s=0.0; for(i=1;i<=n;i++) { t=t*i; s+=1.0
    A+
热门评论