Testing if Either Boolean Expression Is True : If « Language « C++






Testing if Either Boolean Expression Is True

Testing if Either Boolean Expression Is True
#include <iostream>
using namespace std;
int main(void)
{
   int age;
   cout << "Enter your age: ";
   cin >> age;
   if (age > 7)
      if (age >= 70)
         cout << "free";
      else
         cout << "You have to pay";
   else
      cout << "free";
   return 0;
}


           
       








Related examples in the same category

1.Add an else part to the if statementAdd an else part to the if statement
2.The use of if-else statementsThe use of if-else statements
3.Conditional ExpressionsConditional Expressions
4.if /else if /else statement in actionif /else if /else statement in action
5.Testing if Both Boolean Expressions Are TrueTesting if Both Boolean Expressions Are True
6.Use an int value to control the if. Use an int value to control the if.
7.Nested if statementNested if statement