CJCoding With Joseph

Middle of Three Numbers

Read three distinct integers a, b, and c. Print the middle value: the one that is neither the largest nor the smallest.

For example, given the input 3 1 2, the program prints:

2

Expected Output:

2
Topics:
If Statements
๐Ÿ“ฅ Auto-Input:
3 1 2
This input is automatically fed to your program's stdin
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.