Ver Mensaje Individual
  #1 (permalink)  
Antiguo 07/07/2009, 16:29
JR88
Invitado
 
Mensajes: n/a
Puntos:
Exclamación Metodo de la burbuja

Hola, hay algun método para pasar enteros como argumentos en vez de string?


public class Main {

public static void main(String[] args) {

int i;
int j;
int temporal;
int n=args.length;

for(i=0;i<n;i++)
{
for(j=i-1;j>=i;j--)
{
if(args[j]< args[i])
{
temporal =args[j];
args[j]=args[j-1];
args[j-1]=temporal;
}
}
}
}

}