CJCoding With Joseph

Generic Max Method

Complete the generic method Max<T> so it returns the larger of two values of ANY comparable type. This is parametric polymorphism: one method works for int, string, and more. Do NOT write a Main method.

The tester prints Max(3, 8) then Max("apple", "banana"):
8
banana

Expected Output:

8
banana
Topics:
Polymorphism
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.