c语言的问题 大家帮我改改吧 谢谢 我是新手的新手c语言的问题 大家帮我改改吧 谢谢 我是新手的新手
#include"stdio.h"#include"math.h"main(){floats,q,t;intk,n;longx;scanf("%f%f",&s,&q);k...
#include "stdio.h" #include"math.h"
main()
{
float s,q,t;int k,n;long x;
scanf("%f %f",&s,&q);
k=1;n=1;t=s;x=sub(n);
do{t+=k*(pow(s,n))/x;
k=-k;n=n+2;
}
while(fabs(t-s)>q);
printf("%f\n",t);
}
int sub(n)
int n;
{int y, w ;
w=1;
y=1;
do{w*=y;
y++;
}while(y<=n);
return (w);
}
展开
main()
{
float s,q,t;int k,n;long x;
scanf("%f %f",&s,&q);
k=1;n=1;t=s;x=sub(n);
do{t+=k*(pow(s,n))/x;
k=-k;n=n+2;
}
while(fabs(t-s)>q);
printf("%f\n",t);
}
int sub(n)
int n;
{int y, w ;
w=1;
y=1;
do{w*=y;
y++;
}while(y<=n);
return (w);
}
展开
2个回答
展开全部
同学你好,建议写程序的时候,注意一下分行,括号对齐什么的,这样程序读起来容易些。下面我改了一下,有错误的地方都标出来了;当然我也刚学没多久,有错还请不要见怪。
//#include "stdio.h" #include"math.h"
//不能这样写,要一行写一个
#include "stdio.h"
#include"math.h"
main()
{
float s,q,t;
int k,n;
long x;
scanf("%f%f",&s,&q);
k=1;
n=1;
t=s;
x=sub(n);
do{
t+=k*(pow(s,n))/x;
k=-k;
n=n+2;
}
while(fabs(t-s)>q);
printf("%f\n",t);
return 0; //加上这一句(也可返回别的值)
}
int sub(int n) //函数定义时,参数要指明数据类型
{
int y, w ;
w=1;
y=1;
do{
w*=y;
y++;
}while(y<=n);
return (w);
}
//#include "stdio.h" #include"math.h"
//不能这样写,要一行写一个
#include "stdio.h"
#include"math.h"
main()
{
float s,q,t;
int k,n;
long x;
scanf("%f%f",&s,&q);
k=1;
n=1;
t=s;
x=sub(n);
do{
t+=k*(pow(s,n))/x;
k=-k;
n=n+2;
}
while(fabs(t-s)>q);
printf("%f\n",t);
return 0; //加上这一句(也可返回别的值)
}
int sub(int n) //函数定义时,参数要指明数据类型
{
int y, w ;
w=1;
y=1;
do{
w*=y;
y++;
}while(y<=n);
return (w);
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询