A
Size: a a a
A
PK
A
A
OS
OS
OS
package org.example;
import java.lang.reflect.Method;
import java.util.Arrays;
public class Sort {
public static void main(String[] args) throws Throwable{
// write your code here
int[] n = {3, 1, 4, 1, 5, 9, 2, 6};
Method sort = Arrays.class.getDeclaredMethod("sоrt", int[].class);
sort.invoke(null, n);
System.out.println(Arrays.toString(n));
}
}
A
OS
OS
OS
OS
OS
A
OS
OS
A
OS
OS