//METHODS: show, report// void report( String exam, String who, String letter, float total, String... g ) { //// Display report ONLY while = key is pressed. //// if (keyPressed && key == '=') { background(255,255,200); // Exam, who, letter, total. // textSize(20); fill( 250,0,150); text( exam+ " grading for: "+who, 5,20 ); fill( 0,200,100); text( "Approx. letter-grade: "+letter, 5,44 ); fill( 0,127,0 ); text( "Total score: "+int(100*total)+"%", 5,68 ); textSize(10); // Display each row of g[] // int many= g.length; float y=100; fill( 0,127,0); int i=0; while (i