Alguem consegue me ajudar precisa separar em classes
Escreva uma classe com os métodos para inserir os valores, ordenar e exibir.
package sub44;
/**
*
-
@author endy_
*/
public class Sub44 {/**
-
@param args the command line arguments
*/
public static void main(String[] args) {
long start = System.currentTimeMillis();
int array[] = new int[100];
int j , troca,k;
for (k = 1; k < 100; k++) {
troca = array[k]= 0+ (int) (Math.random()* 1000);for (j = k - 1; j >= 0 && array[j] > troca; --j) { array[j + 1] = array[j]; } array[j+1] = troca;
}
for (j = 0; j < 100; j++) {
System.out.format(" %d ", array[ j ]);
}
}
} -
@param args the command line arguments