// Function integ() can do two different things, depending on arguments #include double integ(void) { std::cout << "no args to integ, integrating from 0 to 1"<<"\n"; return (1.0); // just test } double integ(double & a,double & b) { std::cout << "two args to integ, integrating from "<