โ Back to Classes
Question 73
Calendar Date Inequality (operator!=)
Calendar Date Inequality (operator!=)
You are checking if two calendar dates are different. Create a class Date with private ints year, month, day. Requirements: 1) Constructor Date(int y, int m, int d) 2) Overload operator!= to return true if any field differs 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.