CJCoding With Joseph

Minimum of Two Numbers

Write a function int minOf(int a, int b) that returns the smaller of the two values.

For minOf(3, 9) the program prints 3.

Expected Output:

3
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.