Curso de Java Netbeans Completo☕ [37.- Ordenamiento por selección]
En este tutorial vamos a aprender a hacer un ordenamiento de arreglos por selección en java y netbeans.
Codigo: https://github.com/programadornovato/java/commit/7b77f55173881220b3ad7a9872267872e06f19df
package com.programadornovato.proy1; import java.util.Calendar; import java.util.GregorianCalendar; import java.util.Random; import java.util.Scanner; import javax.swing.JOptionPane; /** * * @author eugenio */ public class holaMundo { /** * @param args the command line arguments */ public static void main(String[] args) { //5 4 2 1 3 Scanner entra=new Scanner(System.in); int elemento[]=new int[5],menor,pos,tem; System.out.println("Humano holgaza escribe 5 numero para que yo los ordene"); for(int i=0;i<5;i++){ elemento[i]=entra.nextInt(); } for(int i=0;i<elemento.length-1;i++){ menor=elemento[i]; pos=i; for(int j=i+1;j<elemento.length;j++){ if(elemento[j]<menor){ menor=elemento[j]; pos=j; } } if(pos!=i){ tem=elemento[i]; elemento[i]=elemento[pos]; elemento[pos]=tem; } } System.out.println("Humano aqui estan tus elementos ordenados de forma acendente"); for(int i=0;i<elemento.length;i++){ System.out.print(elemento[i]+","); } System.out.println("Humano aqui estan tus elementos ordenados de forma decendente"); for(int i=elemento.length-1;i>=0;i--){ System.out.print(elemento[i]+","); } } }
? Instalar Netbeans 11 en Ubuntu con Snap [Mas fácil que en windows?]: https://www.youtube.com/watch?v=LllPPV9SMzQ
? Instalar Netbeans 11 en Windows 10: https://www.youtube.com/watch?v=EouitrKS6Cw
? Descargar e Instalar Netbeans 11 en ubuntu 18 04: https://www.youtube.com/watch?v=tWiX3Z5t5kQ
? Netbeans Sublime Theme ?: https://www.youtube.com/watch?v=oAF2Q7mTZZM
? Editar CSS directamenete en Chrome con Netbeans: https://www.youtube.com/watch?v=HlQs0a7R2cY
? Esta lista de reproducción: https://www.youtube.com/playlist?list=PLCTD_CpMeEKTT-qEHGqZH3fkBgXH4GOTF
Codigos en gdrive: https://drive.google.com/file/d/1M6c0VYqrzpq6KwdWkrkw7Aalm8FkdITH/view?usp=sharing
Gracias por apoyar este canal: https://www.patreon.com/programadornovato?fan_landing=true
? Facebook: https://facebook.com/ProgramadorNovatoOficial
? Twitter: https://twitter.com/programadornova
? Linkedin: https://www.linkedin.com/in/programadornovato/
? Instagram: https://www.instagram.com/programadornovato/
Anterior tutorial Siguiente tutorial