Advertisement
Spocoman

01. Excellent Result

Sep 1st, 2023 (edited)
592
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.19 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main() {
  6.     double grade;
  7.     cin >> grade;
  8.  
  9.     if (grade >= 5.50) {
  10.         cout << "Excellent!" << endl;
  11.     }
  12.  
  13.     return 0;
  14. }
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement