You are given a Robot class that contains the following methods
-
void moveOneStepUp() -> This method moves the robot one step up
-
void moveOneStepLeft() -> This method moves the robot one step to the left
-
void moveOneStepRight() -> This method moves the robot one step to the right
-
void moveOneStepDown() -> This method moves the robot one step down.
You are given one robot that initially starts at X = 0 and Y = 0, we want to move it to the target at X = 4 and Y = 3.
Complete the following program to move the robot.
Note: You only need to complete Main class in Main.java file. Robot class in Robot.java file is provided to you.