Java: Sort a numeric array and a string array
1. Sort numeric and string arrays
Write a Java program to sort a numeric array and a string array.
Pictorial Presentation:
Sample Solution:
Java Code:
Sample Output:
Original numeric array : [1789, 2035, 1899, 1456, 2013, 1458, 2458, 1254, 1472, 2365, 1456, 2165, 1457, 2456] Sorted numeric array : [1254, 1456, 1456, 1457, 1458, 1472, 1789, 1899, 2013, 2035, 2165, 2365, 2456, 2458] Original string array : [Java, Python, PHP, C#, C Programming, C++] Sorted string array : [C Programming, C#, C++, Java, PHP, Python]
Flowchart:
For more Practice: Solve these Related Problems:
- Write a Java program to sort an array of integers in descending order without using built-in sorting functions.
- Write a Java program to sort an array of strings based on their length in ascending order.
- Write a Java program to sort an array of floating-point numbers using the selection sort algorithm.
- Write a Java program to sort an array of words by the number of vowels each word contains.
Go to:
PREV : Java Array Exercises Home
NEXT : Sum all values in an array.
Java Code Editor:
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.