Question: C++ 14.8 Lab 5 - Classes - Exercise 1 Classes & Objects Create a class named Student that has three private member string firstName string

C++

C++ 14.8 Lab 5 - Classes - Exercise 1 Classes & Objects

14.8 Lab 5 - Classes - Exercise 1 Classes & Objects Create a class named Student that has three private member string firstName string lastName int studenti Write the required mutator and accessor methods/functions (get/set methods) to display or modify the objects. In the 'main' function do the following (1) Create a student object 'student1'. (2) Use set methods to assign StudentID: 6337130 firstName: Sandy lastName: Santos (3) Display the students detail using get functions in standard output using cout: 6337130 Sandy Santos ACTIVITY 14.8.1: Lab 5 - Classes - Exercise 1 0/100 main.cpp Load default template... 1 #include 2 #include 4 using namespace std; 6 // YOUR CODE FOR CLASS GOES HERE 7 class Student private: string firstName; string lastName; int Student ID; public: void setfirstName(string name) { firstName = name; Develop mode Submit mode Run your program as often as you'd like, before submitting for grading. Below, type any needed input values in the first box, then click Run program and observe the program's output in the second box

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!