Skip to content
C

Bubble Sort

Easyjavapythonccppjavascript

Sort an integer array in ascending order using the Bubble Sort technique — repeatedly compare neighbouring elements and swap them when they are in the wrong order. The judge checks the final sorted output.

Input Format

The first line contains an integer N. The second line contains N space-separated integers.

Output Format

Print the N integers in ascending order, separated by single spaces, on one line.

Input (stdin)

Output

Run your code to see output here...