?? 7.11 mtcl0.c
字號(hào):
#include "math.h"
#include "stdio.h"
#include "7mtcl.c"
main()
{ int m;
double x,b,eps,mtclf(double);
x=0.5; b=1.0; m=10; eps=0.00001;
mtcl(&x,b,m,eps,mtclf);
printf("\n");
printf("x=%13.7e\n",x);
printf("\n");
}
double mtclf(x)
double x;
{ double y;
y=exp(-x*x*x)-sin(x)/cos(x)+800.0;
return(y);
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -