= 개요 = 자료구조 숙제로 나온거라, 스펙이랑 완존히 100 파센트 다름;; = code = {{{~cpp /** Chapter 1.2 (2)Problem Solving programmed by eternalbleu (youngchang park, 2001 1612) Date: 2005 09 10 **/ #include // 에러처리를 위한 매크로 #define EXIT_SUCCESS 0 #define EXIT_FAILURE 1 #define PARAM_X 2.0 #define COEFFICIENTS {1, 2, 3, 4, 5, 6, 7} double horner_func(double, double*, int); int max_exponentials = 0; int main () { double x_param = PARAM_X; // index 차수의 계수를 배열로 지정한다. double coefficient [] = COEFFICIENTS; max_exponentials = sizeof(coefficient) / sizeof(double); std::cout<