목차
Secant Method
문제
C알고리즘
결과출력
본문내용
Secant Method
e=0.0001 일 때 가장 큰 근을 구하여라.
f(x) = x Exp(6) - x - 1 = 0
// Secant Method
#include <stdio.h>
#include <math.h>
#define true 1
#define false 0
#define PI 3.1415926535
double func(double x);
void main()
......
참고 자료
없음