Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

C++ In the Mouse class, declare the following public member functions: SetAge() that takes one integer parameter SetColor() that takes one string parameter and the

C++

In the Mouse class, declare the following public member functions:

SetAge() that takes one integer parameter

SetColor() that takes one string parameter

and the following private data members:

integer age

string color

Ex: If the input is 2 white, then the output is:

Age: 2 Color: white 

#include using namespace std;

class Mouse { public: int GetAge() const; string GetColor() const; private: };

void Mouse::SetAge(int newAge) { age = newAge; }

void Mouse::SetColor(string newColor) { color = newColor; }

int Mouse::GetAge() const { return age; }

string Mouse::GetColor() const { return color; }

int main() { Mouse mouse1; int inputAge; string inputColor;

cin >> inputAge; cin >> inputColor;

mouse1.SetAge(inputAge); mouse1.SetColor(inputColor); cout << "Age: " << mouse1.GetAge() << endl; cout << "Color: " << mouse1.GetColor() << endl;

return 0; }

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

Data Access Patterns Database Interactions In Object Oriented Applications

Authors: Clifton Nock

1st Edition

0321555627, 978-0321555625

Students also viewed these Databases questions

Question

What is the basis for Security Concerns in Cloud Computing?

Answered: 1 week ago

Question

Describe the three main Cloud Computing Environments.

Answered: 1 week ago