Juan Pablo Vergara: Ciclo For

De Casiopea
La versión para imprimir ya no se admite y puede contener errores de representación. Actualiza los marcadores del navegador y utiliza en su lugar la función de impresión predeterminada del navegador.


Títulobidimensional ciclo for
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 2
Período2013-2013
AsignaturaImagen Escrita 2013 - DIS,
Del CursoImagen Escrita 2013 - DIS,
CarrerasDiseño Gráfico"Diseño Gráfico" is not in the list (Arquitectura, Diseño, Magíster, Otra) of allowed values for the "Carreras Relacionadas" property., Diseño Industrial"Diseño Industrial" is not in the list (Arquitectura, Diseño, Magíster, Otra) of allowed values for the "Carreras Relacionadas" property.
Alumno(s)Juan Pablo Vergara
ProfesorHerbert Spencer


size(500,500); // tarea ciclo for
  background(255);
   for (int x = 100 ; x < 400; x = x+8){
  for (int y = 20; y < 480; y = y+4) {
    point(x,y);
    stroke(y/2);
    strokeWeight(4);
  }
 }