。。输入精度e 和实数x,用下列公式求cos x 的近似值,精确到最后一项的绝对值小于e。
。。输入精度e 和实数x,用下列公式求cos x 的近似值,精确到最后一项的绝对值小于e。
日期:2017-12-16 17:19:28 人气:2
楼主你好
改动比较多,修改后的代码如下:
#include
#include
double fun(double x,double e);//我把声明都放外面了
double fun2(double i); //多声明了一个fun2,用于计算阶乘
int main(void)
{
double x,e,cosx;
scanf("%lf %lf",&x,&e); //这里改成一个scanf函数输入两个,中间用空格或