Question: I need help with C++ code can you fix my code? Here is my code #include #include #include #include using namespace std; int main(){ const
I need help with C++ code
can you fix my code?
Here is my code
#include #include #include #include
using namespace std;
int main(){ const int WIDTH_1=10; const int WIDTH_2=15; const int MAX_ITER=50; int start,stop, step,iterations,check=0,square,cube; double root; cout>start>>stop>>step; if(stop50) { cout and here is an issue

1: Validated Input A 0/2 Output is nearly correct; but whitespace differs. See highlights below. Special character legend Input 5 0 1 5 80 1 51 1 1 51 2 Enter start, stop, and step values (space separated): Oops! stop value must be greater than start value. Enter start, stop, and step values (space separated): Your output Oops! step value must be greater than 0. Enter start, stop, and step values (space separated): Oops! number of iterations should not exceed 50. Enter start, stop, and step values (space separated): Table written to number-table.txt Expected output Enter start, stop, and step values (space separated): Oops! stop value must be greater than start value. Enter start, stop, and step values (space separated): Oops! step value must be greater than 0. Enter start, stop, and step values (space separated): Oops! number of iterations should not exceed 50. Enter start, stop, and step values (space separated): Table written to number-table. txt