โ Back to If Statements
Question 275
Middle of Three Numbers
Middle of Three Numbers
Read three integers withscanfand print the middle one (the median: not the largest and not the smallest), with no trailing newline. Assume the three values are different. For input3 1 2the output is2; for input7 5 9the output is7.
Expected Output:
2
Topics:
If Statements
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.