-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram73.java
42 lines (37 loc) · 937 Bytes
/
Program73.java
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
34
35
36
37
38
39
40
41
42
/* Program 73
20/08/24 */
import java.util.Scanner;
public class Sort {
int arr[], i, j, temp;
void inputdata() {
Scanner sc = new Scanner(System.in);
arr = new int[10];
for (i = 0; i < 10; i++) {
System.out.print("Enter number: ");
arr[i] = sc.nextInt();
}
}
void arrange() {
for (i = 0; i < 10; i++) {
for (j = 0; j < 9 - i; j++) {
if (arr[j] > arr[j + 1]) {
temp = arr[j];
arr[j] = arr[j + 1];
arr[j + 1] = temp;
}
}
}
}
void outputdata() {
for (i = 0; i < 10; i++) {
System.out.print(arr[i] + ", ");
}
System.out.println();
}
public static void main(String args[]) {
Sort s = new Sort();
s.inputdata();
s.arrange();
s.outputdata();
}
}