#include #include "bisect.h" using namespace std; int main() { double xmin,xmax,errfun,xr; int nmax; cout<<"Enter the two edges of the search interval\n"; cin>>xmin>>xmax; cout<<"Enter Max. number of Iterations\n"; cin>>nmax; cout<<"Enter Maximum Allowed Error for the Function\n"; cin>>errfun; xr = xmin; bisect(xmin,xmax,nmax,xr,errfun); cout<