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 two Robot objects that initially start at the following coordinates.
-
firstRobot starts at X = 1, Y = 2
-
secondRobot starts at X = 3, Y = 3
We want both robots to go to the same point! So we want to move both robots to
X = 5, Y = 6
Complete the following program to move both robots to the
X = 5, Y = 6
Note: You only need to complete Main class in Main.java file. Robot class in Robot.java file is provided to you.