โ Back to Classes
Question 71
Evaluate a Line (operator())
Evaluate a Line (operator())
You are modeling a straight line y = mx + b. Create a class Line with private ints m and b. Requirements: 1) Constructor Line(int m, int b) 2) Overload operator()(int x) to compute y for a given x Do NOT write a main function.
Expected Output:
11 -8
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.