20/12/2002, 11:41
|
| | | Fecha de Ingreso: noviembre-2002 Ubicación: Madrid
Mensajes: 195
Antigüedad: 22 años, 1 mes Puntos: 0 | |
espro q te sirva esto, es del tema de los triangulos pero hecho sin applets, no se si es esto lo que buscas y tp se si llego tarde ya, pero bueno, aki te lo dejo:
public class Triangulo{
public static void main(String args[]){
for(int i=0;i<500;i++){
for(int j =0;j<500;j++){
for(int t=0;t<500;t++){
if(i==0||j==0||t==0){
}
else{
if((Math.pow(i,2)+Math.pow(j,2))==Math.pow(t,2)){
System.out.println("Triangulo : "+i+","+j+","+t);
}
}
}
}
}
}
} |