โ Back to Classes
Question 83
Grade Compare (operator> and operator>=)
Grade Compare (operator> and operator>=)
You are comparing student grades across different point totals. Create a class Grade that stores TWO ints: earnedPoints and totalPoints. Rules: - Percentage = earnedPoints / totalPoints (compare by percentage) - Assume totalPoints > 0 Requirements: 1) Constructor Grade(int earnedPoints, int totalPoints) 2) double getPercent() const 3) Overload operator> and operator>= to compare percentages Do NOT write a main function.
Expected Output:
true false
Topics:
ClassesOperator Overloading
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.