diff --git a/bubble_asad.java b/bubble_asad.java new file mode 100644 index 0000000..c8772ac --- /dev/null +++ b/bubble_asad.java @@ -0,0 +1,32 @@ +import java.util.Scanner; + +public class BubbleSort { + public static void main(String []args) { + int i,j,temp,limit; + Scanner sc = new Scanner(System.in); + + System.out.println("Enter the limit of the numbers:"); + limit = sc.nextInt(); + + int array[] = new int[limit]; + + System.out.println("Enter " + limit + " numbers: "); + for (i = 0; i array[j+1]) //swap the elements if first one is greater than second + { + temp = array[j]; + array[j] = array[j+1]; + array[j+1] = temp; + } + } + } + + System.out.println("******Sorted list******"); + for (i = 0; i < limit; i++) + System.out.println(array[i]); + } +}