Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

C++

image text in transcribed

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Logic In Databases International Workshop Lid 96 San Miniato Italy July 1 2 1996 Proceedings Lncs 1154

Authors: Dino Pedreschi ,Carlo Zaniolo

1st Edition

3540618147, 978-3540618140

More Books

Students also viewed these Databases questions

Question

What is the role of the Joint Commission in health care?

Answered: 1 week ago