Luke Franzke
Oct 03, 2017
Oct 24, 2017
...
for(int i=0; i <= 100; i++) { println(i); }
while([condition]) { }
int x=0; while(x <= 100) { println(x); x++; }
Write a program that creates a line of trees on the screen using a loop.