Create a program similar to an Etch-a-Sketch. Use Scanner to capture what direction you would like to move. To keep from getting bogged down, I would suggest moving 10-20 pixels at a time. Use 'a', 's', 'd', and 'w' for the directions. Use 'x' to virtually shake the Etch-a-Turtle. We all know what is suppose to happen when you shake it.
Hint:
//Start up Scanner here.
while(true)
{
//Code that moves the turtle once goes here.
}
Console Input:
Direction: d
Direction: d
Direction: w
Direction: d
Direction: w
Direction: a
Direction: a
Direction: s
Direction: d
Direction: a
Direction: w
Direction: a
Direction: a
Direction: a
Direction: s
Direction: a
Direction: s
Direction: d
Direction: d
Direction: s
Direction: a
Direction: w
Direction: d
Direction: d
Direction: s
Direction: d
Direction: w