Advertisement
joseleonweb

Untitled

Jan 26th, 2021
684
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.23 KB | None | 0 0
  1. public class SortExample {
  2.     public static void main(String[] args) {
  3.         int[] numbers = {40, 7, 59, 4, 1};
  4.         displayValues(numbers);
  5.         selectionSort(numbers);
  6.         displayValues(numbers);
  7.     }//end method main
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement