Mega Code Archive

 
Categories / C++ Tutorial / Operators Statements
 

If else statement with block code

#include <iostream>  #include <cstdlib>    using namespace std;    int main()  {    int magic;  // magic number    int guess;  // user's guess       magic = rand(); // get a random number        cout << "Enter your guess: ";    cin >> guess;      if (guess == magic) {      cout << "Right\n";      cout << magic << " is the magic number.\n";    }    else {      cout << "...Sorry, you're wrong.";      if(guess > magic)         cout <<" Your guess is too high.\n";      else         cout << " Your guess is too low.\n";    }      return 0;  } Enter your guess: 3 ...Sorry, you're wrong. Your guess is too low.