Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions bubble_asad.java
Original file line number Diff line number Diff line change
@@ -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 <limit; i++)
array[i] = sc.nextInt();

for (i = 0; i < ( limit - 1 ); i++) {
for (j = 0; j < limit - i - 1; j++) {
if (array[j] > 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]);
}
}