...
| 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.
...
...
| Code Block |
|---|
int x=0;
do
{
println(x);
x++;
}while(x <= 100); |
Write a program that creates a line of trees on the screen.
...