#include #include #include using namespace std; double f(double x) { return (x*exp(x)); } double f2(double x) { return sin(x); } void fpRichardson(double h, int n){ double ** D = new double * [n]; for(int i=0;i>choice; switch(choice){ case 1: cout<<"Enter h initial:"<>h; cout<<"Enter number of step:"<>n; fpRichardson(h,n); break; case 2: cout<<"Enter h initial:"<>h; cout<<"Enter number of step:"<>n; fppRichardson(h,n); break; case 3: cout<<"Enter mMax: "<>mMax; Romberg(mMax); break; case 4: cout<<"Exit"<