Question: Visual Studio C++ Define a class BSVolume which has the following characteristics to manage a volume in the traditional British system. For your information: 1
Visual Studio C++
Define a class BSVolume which has the following characteristics to manage a volume in the traditional British system. For your information: 1 bucket = 4 gallons = 16 quarts = 640 fluid ounce. [26 points total] a. It contains integer variables fluidOunce, quart, gallon, bucket. (access right: private). [4 points] b. It has a constructor to set the initial values of fluidOunce, quart, gallon, bucket. [4 points) has functions get_fluidOunce(), get_quart(), get_gallon(), get_bucket() to obtain the corresponding variables. [4 points] d. It has the function get_total_fluidounce() to convert and return the amount of fluidounce of a given volume. [4 points] e. It has overloaded operator + to calculate the addition of two volumes. The result is simplified (gallon should be less than 4, quart should be less than 4, fluid Ounce should less than 40) and stored in the original variables. [10 points). c. It
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
