if /else if /else statement in action : If « Language « C++






if /else if /else statement in action

if /else if /else statement in action
#include <iostream>
using namespace std;
int main(void)
{
   int testScore;
   cout << "Enter your test score: ";
   cin >> testScore;
   if (testScore >= 90 )
      cout << "Your grade is an A" << endl;
   else if (testScore >= 80 )
      cout << "Your grade is a B" << endl;
   else if (testScore >= 70 )
      cout << "Your grade is a C" << endl;
   else if (testScore >= 60 )
      cout << "Your grade is a D" << endl;
   else 
      cout << "Your grade is an F" << 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.The use of if-else statementsThe use of if-else statements
4.Conditional ExpressionsConditional Expressions
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