CJCoding With Joseph

Temperature Display Override

Override the inherited ToString method in Temperature so it returns the stored number followed by the letter C (for example 22C). Console.WriteLine calls ToString automatically. Do NOT write a Main method.

For new Temperature(22) the program prints:

22C

Expected Output:

22C
Topics:
Inheritance
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.