Question: // TODO - you need to implement this. Move the turtle to the asked position, by calling MoveXXX etc public static void moveTurtleTo(Turtle t, int
// TODO - you need to implement this. Move the turtle to the asked position, by calling MoveXXX etc public static void moveTurtleTo(Turtle t, int x, int y) { moveTurtleTo(turtle.xPos,turtle.yPos); } public static void main(String[] args) { // you can use this as you wish to test or exercise your function. Not graded. Turtle t=new Turtle(); moveTurtleTo(t,15,16); System.out.println(t); }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
