โ Back to If Statements
Question 391
Sort Three Numbers Ascending
Sort Three Numbers Ascending
Read three integersa,b, andc. Print them in ascending (increasing) order, separated by single spaces, ending with a newline. For example, given the input3 1 2, the program prints: 1 2 3
Expected Output:
1 2 3
Topics:
If Statements
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.