1. Use the Euler's method and the Runge-Kutta second and forth methods to approximate the solution to each of the following initial-value problems. Co..
;//말 그대로 x값double k1=0;//R-K법에서 사용할 변수double k2=0;//R-K법에서 사용할 변수double k3=0;//R-K법에서 사용할 변수double k ... 4=0;//R-K법에서 사용할 변수double h=0;//등간격double a=0;//두 구간중 첫값double b=0;//두 구간중 끝값double y=1;//y만 1로 초기 ... //변수초기화및 선언////////////////과학적 표기및 숫자표기법//////////////////cout.setf(ios_base::left,ios_base