From 7545e4bf4f99841467a41a9f9a212d90b4c1c57f Mon Sep 17 00:00:00 2001 From: asad-mansoor <116182678+asad-mansoor@users.noreply.github.com> Date: Wed, 19 Oct 2022 21:15:39 +0530 Subject: [PATCH] Create bubble_asad.java --- bubble_asad.java | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 bubble_asad.java 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]); + } +}