Java I
Jonah Warrenjonah@parsons.edu
http://a.parsons.edu/~java2004
Homework 4.3.3 Hint
Here's the hint. Copy and paste into processing. Watch the numbers it spits out.
void setup() {
for(int i=0;i<5;i++) {
for(int j=0;j<5;j++) {
print( (i+j*5) + " " );
}
}
}