C++ Switch Statement

This C++ Program which illustrates the use of switch statement. The program takes percentage as the input and the grade is output on the screen using the switch statement.

Here is source code of the C++ program which illustrates the use of switch statement. The C++ program is successfully compiled and run on a Linux system. The program output is also shown below.

  1. /*
  2.  * C++ Program to Illustrate Switch Statement
  3.  */
  4. #include <iostream>
  5. using namespace std;
  6.  
  7. int main()
  8. {
  9.     int percentage;
  10.  
  11.     cout << "Enter the percentage : ";
  12.     cin >> percentage;
  13.     switch (percentage / 10)
  14.     {
  15.     case 10:    case 9:
  16.         cout << "You have got grade A+" << endl;
  17.         break;
  18.     case 8:
  19.         cout << "You have got grade A" << endl;
  20.         break;
  21.     case 7:
  22.         cout << "You have got grade B+" << endl;
  23.         break;
  24.     case 6:
  25.         cout << "You have got grade B" << endl;
  26.         break;
  27.     case 5:
  28.         cout << "You have got grade C" << endl;
  29.         break;
  30.     default:
  31.         cout << "You have got grade D" << endl;
  32.         break;
  33.     }
  34. }

$ g++ main.cpp
$ ./a.out
Enter the percentage : 98.5
You have got grade A+
$ ./a.out
Enter the percentage : 68.71
You have got grade B

Sanfoundry Global Education & Learning Series – 1000 C++ Programs.

advertisement
advertisement
If you wish to look at all C++ Programming examples, go to C++ Programs.

If you find any mistake above, kindly email to [email protected]

advertisement
advertisement
Subscribe to our Newsletters (Subject-wise). Participate in the Sanfoundry Certification contest to get free Certificate of Merit. Join our social networks below and stay updated with latest contests, videos, internships and jobs!

Youtube | Telegram | LinkedIn | Instagram | Facebook | Twitter | Pinterest
Manish Bhojasia - Founder & CTO at Sanfoundry
Manish Bhojasia, a technology veteran with 20+ years @ Cisco & Wipro, is Founder and CTO at Sanfoundry. He lives in Bangalore, and focuses on development of Linux Kernel, SAN Technologies, Advanced C, Data Structures & Alogrithms. Stay connected with him at LinkedIn.

Subscribe to his free Masterclasses at Youtube & discussions at Telegram SanfoundryClasses.