...
Code Block |
---|
int x=0; do { println(x); x++; }while(x <= 100); |
Exercise 6
Write a program that creates a line of trees animated icons on the screen using a loop. Make use of the sin() function to create a simple oscillation.
...
Code Block |
---|
int x=0; do { println(x); x++; }while(x <= 100); |
Write a program that creates a line of trees animated icons on the screen using a loop. Make use of the sin() function to create a simple oscillation.