Computer Science, asked by rahul950776, 1 year ago

the program for bubble sort

Answers

Answered by Tina11111
2
Both pic ..... its for one program
Attachments:
Answered by Anonymous
0

import java.util.*;

class bubble_sort

{

int n;

int arr[]=new int[n];

int b[]=new int[n];

public static void main(String args[])

{

accept();

}

void accept()

{

Scanner sc=new Scanner(System.in);        

System.out.println("Enter a number of elements");

n=sc.nextInt();

System.out.println("Enter the array elements");

for(int i=0;i<n;i++)

{

arr[i]=sc.nextInt();

b[i]=arr[i];

}

sort();

}

void sort()

{

for(int i=0;i<n-1;i++)

{

for(int j=0;j<(n-1-i);j++)

{

if(arr[j]>arr[j+1])

{

int temp=arr[j];

arr[j]=arr[j+1];

arr[j+1]=temp;

}

}

}

disp();

}

void disp()

{

System.out.println("The elements in the array are arranged in acending:");

for(int i=0;i<n;i++)

{

System.out.println(arr[i]);

System.out.println(b[i]);

}

}

}

Similar questions