Skip to content

Instantly share code, notes, and snippets.

@slava-konashkov
Created February 17, 2014 18:10
Show Gist options
  • Select an option

  • Save slava-konashkov/9055908 to your computer and use it in GitHub Desktop.

Select an option

Save slava-konashkov/9055908 to your computer and use it in GitHub Desktop.
Вывод и сортировка массива
package test;
import java.util.*;
public class MyArr {
public static void main(String[] args) {
int[] iArr = {2,3,6,1,3,4,7,9,7};
Arrays.sort(iArr);
System.out.println(Arrays.toString(iArr));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment