Question 3 0 Points Create a class called furniture that has a string data attribute called color. The attribute default
Posted: Mon Jun 06, 2022 1:20 pm
Question 3 0 Points Create a class called furniture that has a string data attribute called color. The attribute default value is "brown" and acceptable values are "brown", "cherry", "white". Create get and set functions. Create the all default argument constructor. Overload the stream insertion operator (operator<<) to output the details of a furniture object (output must be: furniture: <color>).