按下面的公式求s的近似值,直到最后一项的项值绝对值小于x为止,x的值由键盘输入,结果保留4位小数.S=1-1/3+1/5-1/7+.+(-1)*(n-1)*1/(2n-1)例如:当x=0.001时,结果为0.7849在begin和end中间怎么编写!#include "s
来源:学生作业帮助网 编辑:作业帮 时间:2024/11/05 15:06:32
按下面的公式求s的近似值,直到最后一项的项值绝对值小于x为止,x的值由键盘输入,结果保留4位小数.S=1-1/3+1/5-1/7+.+(-1)*(n-1)*1/(2n-1)例如:当x=0.001时,结果为0.7849在begin和end中间怎么编写!#include "s
按下面的公式求s的近似值,直到最后一项的项值绝对值小于x为止,x的值由键盘输入,结果保留4位小数.
S=1-1/3+1/5-1/7+.+(-1)*(n-1)*1/(2n-1)
例如:当x=0.001时,结果为0.7849
在begin和end中间怎么编写!
#include "stdio.h"
#include "math.h"
#include "stdlib.h"
double fun(double x)
{
//
}
void main()
{
double x,sum;
printf("Enter x:\n");
scanf("%lf",&x);
sum=fun(x);
printf("sum=%.4f\n",sum);
NONO( );
}
NONO( )
{ FILE *fr,*fw;
int i;
double x;
fr=fopen("D:\\exam\\01910224\\PROGIN.DAT","r");
fw=fopen("D:\\exam\\01910224\\PROGOUT.DAT","w");
for(i=1;i
按下面的公式求s的近似值,直到最后一项的项值绝对值小于x为止,x的值由键盘输入,结果保留4位小数.S=1-1/3+1/5-1/7+.+(-1)*(n-1)*1/(2n-1)例如:当x=0.001时,结果为0.7849在begin和end中间怎么编写!#include "s
double fun(double x)
{
//
}