โ Back to Functions
Question 246
Maximum of Two Numbers
Maximum of Two Numbers
Write a function int maxOf(int a, int b) that returns the larger of the two values. If they are equal, returning either is fine.
For maxOf(3, 9) the program prints 9.Expected Output:
9
Topics:
Functions
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.