(String[] args)
| 2 | |
| 3 | public class bubblesort { |
| 4 | public static void main(String[] args) { |
| 5 | int[] arr = {10, 9, 8, 7, 6, 5, 4, 3, 2, 1}; |
| 6 | bubble(arr); |
| 7 | System.out.println(Arrays.toString(arr)); |
| 8 | } |
| 9 | static void bubble(int[] arr) { |
| 10 | boolean swapped; |
| 11 | for(int i = 0 ; i < arr.length ; i++){ |