Error w/declaration on else statement (C++)

52 Views Asked by At
#include <iostream>

using namespace std;

// Range of numbers, handles input in which the first number is smaller than the second.

int main()
{
    int max = 10;
    int min = 0;
    while(cin >> min)
    {
        if(min<max)
        {
            ++min;
            cout << "The number inputted is well in the RANGE: " << min << endl;
        else
        {
            cout << "The number inputted is not in the RANGE: " << max << endl;
        }
    }
} // End of if.
}

What's going on? Why isn't this working? I'm new to Stack so I tried posting this, er any help?

1

There are 1 best solutions below

1
On BEST ANSWER

You should end the if before you start your else part :

int main()
{
int max = 10;
int min = 0;
while(cin >> min){
   if(min<max){
     ++min;         //dont understand why do you do this !
     cout << "The number inputted is well in the RANGE: " << min << endl;
     } // End of if.
   else{
   cout << "The number inputted is not in the RANGE: " << max << endl;
    }
   }    
}