![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
14/11/2004, 01:45
|
| | Fecha de Ingreso: noviembre-2003 Ubicación: Mexico
Mensajes: 1.081
Antigüedad: 21 años, 3 meses Puntos: 7 | |
for(int j = peso.length; j >= 1; j--)
{
for(int i = 0; i < peso.length - 1; i++)
if(peso[i] > peso[i + 1])
{
int aux = peso[i];
peso[i] = peso[i + 1];
peso[i + 1] = aux;
String aux1 = arista[i];
arista[i] = arista[i + 1];
arista[i + 1] = aux1;
}
} |