#include #include #include #include #include "nr.h" using namespace std; // Driver for routine rd int main(void) { string txt; int i,nval; DP val,x,y,z; ifstream fp("fncval.dat"); if (fp.fail()) NR::nrerror("Data file fncval.dat not found"); getline(fp,txt); while (txt.find("Elliptic Integral Second Kind RD")) { getline(fp,txt); if (fp.eof()) NR::nrerror("Data not found in fncval.dat"); } fp >> nval; getline(fp,txt); cout << endl << "Elliptic Integral Second Kind RD" << endl; cout << setw(6) << "x" << setw(8) << "y" << setw(8) << "z"; cout << setw(15) << "actual" << setw(17) << "rd(x,y,z)" << endl; for (i=0;i> x >> y >> z >> val; cout << fixed << setprecision(2); cout << setw(8) << x << setw(8) << y << setw(8) << z; cout << scientific << setprecision(6); cout << setw(16) << val << setw(16) << NR::rd(x,y,z) << endl; } return 0; }