plzz tell me.
i do not understand this question.
write this C++ program.
You have to write a program in C++ that computes the minimal and the maximal value of function f(x,y) obtained on an integer point in a given rectangle [a, b] x [c, d]. Your program should prompt the user to input numerical values of a, b, c and d, as floating point numbers, which are expected to be in a range from -100 thru 100. In case when minimal or maximal values do not exists, your program should output appropriate messages.
cout<<"Please, enter four numbers:"<<"\n";
cout<<"a =";
cin>>a;
cout<<"b =";
cin>>b;
cout<<"c =";
cin>>c;
cout<<"d =";
cin>>d;
if (a>100 || b>100 || c>100 || d>100 || a<-100 || b<-100 || c<-100 || d<-100)
{
cout << "The entered numbers must be in a range from -100 thru 100 ";
}
else
{
for ( x=a; x<=b; x=x+0.01)
{
for ( y=c; y<=d; y=y+0.01)