Advertisement
jhnksr

Grade Checker

Sep 28th, 2023
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.39 KB | Source Code | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.    
  6.     int g;
  7.     cout << "Enter your GWA: ";
  8.     cin >> g;`
  9.     if (g>=80)
  10.     {
  11.         cout << "Grade: A+";
  12.     }
  13.     else
  14.  
  15.     {
  16.         if (g>=70)
  17.         cout << "Grade: A";
  18.         else
  19.         {
  20.             if (g>=60)
  21.             cout << "Grade: B";
  22.             else
  23.             {
  24.                 if (g>=40)
  25.                 cout << "Grade: C";
  26.                 else
  27.                 {
  28.                     cout << "Grade: F";
  29.                 }
  30.             }
  31.         }
  32.     }
  33.  
  34.     return 0;
  35.  
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement