Question: class Robot { public: int x,y; char heading; Robot(int start_x,int start_y, char start_heading) { x = start_x; y = start_y; heading = start_heading; } };

class Robot { public: int x,y; char heading; Robot(int start_x,int start_y, char start_heading) { x = start_x; y = start_y; heading = start_heading; } };
use c++
Copy your class "Robot" from the previous question. Add the public functions turnLeft, turnRight, and moveForward. The functions should update the robot's x, y, and heading attributes and should not return anything. turnLeft and turnRight should update the robot's heading. If the robot's heading is turnLeft should result in the new heading being 'W moveForward should update the robot's x or y position by 1. If the robot's heading is 'N', moveForward should result in the y position increasing by one. If the robot's heading is 'S', moveForward should result in the y position decreasing by one -3
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
