// arrays exercise // hugo bonilla // cst 112 proffesor Martin int total=0; int a[]= { 0, 15, 28, 33, 44, 55, 66, 77}; void setup() { size(500,500); frameRate(1); } void draw(){ background(255); fill(0); //title textSize(20); text( "array exercise", width/2, -50); //author text(" Hugo Bonilla", 30, height -30); fill(0); textSize(40); text(total, 250,250); for (int j=0; j