Modify a text file: $/p3.pde
$/p3.pde
int many=20; int[] z = new int[many]; float total, average; float r, c, n, d, h, b, s, v; ////SETUP: Screen Size//// void setup() { size(400, 400); } void draw() { scene(); //Show the buttons display(z, many); //Show the array messages(); //Title, author, average } void scene() { background(200, 255, 200); } //Display a list of array values void display(int[] v, int m) { int x=50, y=60, spacing=15; textSize(10); for(int i=0; i