Advertisement
MarioPetrov02

Excellent Result

Sep 23rd, 2017
71
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. #include <string>
  3. using namespace std;
  4.  
  5.  
  6. int main()
  7. {
  8.     double grade; cin >> grade;
  9.  
  10.     if (grade >= 5.5)
  11.     {
  12.         cout << "Excellent!" << endl;
  13.     }
  14.  
  15.     return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement