The use of if-else statements : If « Language « C++






The use of if-else statements

The use of if-else statements

#include <iostream>
using namespace std;
int main()
{
   float x, y, min;
   cout << "Enter two different numbers:\n";
   if( cin >> x && cin >> y)  
   {                          
     if( x < y )              
        min = x;
     else
       min = y;
     cout << "\nThe smaller number is: " << min << endl;
   }
   else
     cout << "\nInvalid Input!" << endl;
   return 0;
} 


           
       








Related examples in the same category

1.Testing if Either Boolean Expression Is TrueTesting if Either Boolean Expression Is True
2.Add an else part to the if statementAdd an else part to the if statement
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