Add an else part to the if statement : If « Language « C++






Add an else part to the if statement

Add an else part to the if statement

#include <iostream>
using namespace std;
int main(void)
{
   int num;
   cout << "Enter a whole number: ";
   cin >> num;
   if ( num % 2 == 0 )
      cout << "The number is even" << endl;
   else
      cout << "The number is odd" << endl;
   return 0;
}

           
       








Related examples in the same category

1.Testing if Either Boolean Expression Is TrueTesting if Either Boolean Expression Is True
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