-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSorted.java
43 lines (29 loc) · 855 Bytes
/
Sorted.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
43
import java.util.*;
class Sorted{
static int reverseNumber(int num){
StringBuilder str = new StringBuilder(Integer.toString(num));
str.reverse();
return(Integer.parseInt(str.toString()));
}
static void getSorted(int[] array ){
Arrays.sort(array);
}
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
System.out.println("Enter number of elements in the array");
int size = scan.nextInt();
int []arr = new int[size];
System.out.println("Enter the elements in the array to be reversed");
for (int i = 0; i < size; i++) {
arr[i] = scan.nextInt();
}
for (int j = 0; j < size; j++){
arr[j] = reverseNumber(arr[j]);
}
getSorted(arr);
System.out.println("New sorted array is:");
for (int k : arr) {
System.out.println(k);
}
}
}