โ Back to Arrays
Question 176
Sort an Array Ascending
Sort an Array Ascending
An int array is given. Sort it ascending WITHOUT using Array.Sort (write the sort yourself, e.g. bubble sort), then print it on one line separated by single spaces.
For { 5, 2, 8, 1, 9, 3 } the program prints '1 2 3 5 8 9'.Expected Output:
1 2 3 5 8 9
Topics:
Arrays
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.