-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathBubble.java
More file actions
33 lines (33 loc) · 767 Bytes
/
Bubble.java
File metadata and controls
33 lines (33 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import java.util.*;
class Bubble
{
static void main()
{
Scanner sn=new Scanner(System.in);
System.out.print("Enter Number of Elements You Want to Input:");
int len=sn.nextInt();
int n[]=new int[len];
int i,temp;
for(i=0;i<=len-1;i++)
{
System.out.print("Enter Numbers:");
n[i]=sn.nextInt();
}
for(i=0;i<=len-1;i++)
{
for(int j=0;j<=len-2;j++)
{
if(n[j]>n[j+1])
{
temp=n[j];
n[j]=n[j+1];
n[j+1]=temp;
}
}
}
for(i=0;i<=len-1;i++)
{
System.out.print(" "+n[i]);
}
}
}