
20/01/2009, 11:29
|
| | | Fecha de Ingreso: octubre-2008 Ubicación: Madrid
Mensajes: 352
Antigüedad: 17 años, 1 mes Puntos: 5 | |
| Respuesta: String repetidos. Por algún motivo no vale el == y debe ser >=
int i=0;
int j=0;
for(i=15;i>=0;i--)
{
System.out.println(i);
for(j=(i-1);j>=0;j--){
System.out.println(i+"<>"+j);
}
}
}
} |