โ Back to If Statements
Question 258
Sort Two Numbers Ascending
Sort Two Numbers Ascending
Read two integers withscanf. Print them on one line in ascending order (smaller first), separated by a single space, with no trailing newline. For input8 3the output is exactly: 3 8 For input2 5the output is2 5.
Expected Output:
3 8
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.