Trees and Cabins You will make an applet containing a bunch of
trees and a few cabins like the one displayed to the left.
HINT:
public Image makeHouse(){
int w=21; int h=20;
int[] pix = new int[w*h];
for(int i = 0; i
You can try to use this code. Notice the use of the modulus operator inside
of the embedded for-loops.