
10/05/2009, 04:52
|
| | Fecha de Ingreso: abril-2008
Mensajes: 141
Antigüedad: 16 años, 10 meses Puntos: 0 | |
Respuesta rapida a pregunta corta Que es mas optimo?
Código javascript :
Ver originalfor (int i=0; i<5; i++) algo[i] = 0;
O bien:
Código javascript :
Ver originalfor (int i=0; i<5; i++){ algo[i] = 0; }
Gracias. |