Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
int x=0;
do
{
   println(x);
   x++;
}while(x <= 100);

Exercise 6

Write a program that creates a line of trees on the screen. 

...