Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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 -3Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started