This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * To change this license header, choose License Headers in Project Properties. | |
| * To change this template file, choose Tools | Templates | |
| * and open the template in the editor. | |
| */ | |
| package javaapplication14; | |
| import java.util.Arrays; | |
| public class JavaApplication14 { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package o_seleccion; | |
| import java.util.*; | |
| public class O_Seleccion { | |
| public static void main(String[] args) { | |
| int[] lista = {2, 4, 6, 1, 3, 5}; | |
| int aux; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * To change this license header, choose License Headers in Project Properties. | |
| * To change this template file, choose Tools | Templates | |
| * and open the template in the editor. | |
| */ | |
| package investigacion; | |
| import java.util.*; | |
| public class Investigacion | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package ordenamiento; | |
| import java.io.*; | |
| public class Shell | |
| { | |
| static int[] vec={50,5,6,7,1,2,20,9,30}; | |
| static int[] vec1; | |
| // public void ingresar() throws IOException | |
| // { | |
| // BufferedReader ingreso = new BufferedReader(new InputStreamReader(System.in)); |