Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

2. Consider the following statements: class temporary { public: void set(string, double, double); void print(); double manipulate(); void get(string&, double8, double&); void setDescription(string); void setFirst(double);

image text in transcribed
image text in transcribed
2. Consider the following statements: class temporary \{ public: void set(string, double, double); void print(); double manipulate(); void get(string\&, double8, double\&); void setDescription(string); void setFirst(double); void setSecond(double); string getDescription() const; double getfirst()const; double getSecond()const; temporary ( string ==,, double =0.0, double =0.0); private: string description; double first; double second; 3 ; Now answer the following questions: a. Write the definition of the member function set so that the instance variables are set according to the parameters. b. Write the definition of the member function manipulate that returns a decimal number as follows: If the value of deseription is "rectangle", it returns first "second; if the value of description is "circle", it returns the area of the circle with radius first; if the value of description is "sphere", it returns the volume of the sphere with radius first; if the value of description is "cylinder", it returns the volume of the cylinder with radius first and height second; otherwise, it returns the value 1. c. Write the definition of the function print to print the values of the instance variables and the values returned by the function manipulate. For example, if description = "rectangle", first =8.5, and second =5, it should print: rectangle: length =8.50, width =5.00, area =42.50 d. Write the definition of the constructor so that it initializes the instance variables using the function set. e. Write the definition of the remaining functions to set or retrieve the values of the instance variables. Note that the function get returns the values of all instance string getDescription() const; double getFirst()const; double getSecond()const; temporary ( string =", double =0.0, double =0.0); private: string description; double first; double second; \} i: Now answer the following questions: a. Write the definition of the member function set so that the instance variables are set according to the parameters. b. Write the definition of the member function manipulate that returns a decimal number as follows: If the value of description is "rectangle", it returns first * second; if the value of description is "circle", it returns the area of the circle with radius first; if the value of description is "sphere", it returns the volume of the sphere with radius first; if the value of description is "cylinder", it returns the volume of the cylinder with radius first and height second; otherwise, it returns the value 1. c. Write the definition of the function print to print the values of the instance variables and the values returned by the function manipulate. For example, if description = "rectangle", first =8.5, and second =5, it should print: rectangle: length =8.50, width =5.00, area =42.50 d. Write the definition of the constructor so that it initializes the instance variables using the function set. e. Write the definition of the remaining functions to set or retrieve the values of the instance variables. Note that the function get returns the values of all instance variables. 3. What is the output of the following statements? temporary object1

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

Learn To Program Databases With Visual Basic 6

Authors: John Smiley

1st Edition

1902745035, 978-1902745039

More Books

Students also viewed these Databases questions