(Solved) : Files Branchsalescpp Branchsalesh Mainbranchcpp Corporation Three Branches Design Branch S Q44168795 . . .

c++Files: BranchSales.cpp – BranchSales.h-mainBranch.cpp A corporation has three branches. Design a Branch Sales class that keeps sales data for a branch, with the following members: • An array of four elements for holding four quarters of sales figures for the branch. • A private static variable for holding the total corporate sales for all branches for the entire year. • A member function that takes four arguments, each assumed to be the sales for a quarter. The value of the arguments should be copied into the array that holds the sales data. The total of the four arguments should be added to the static variable that holds the total yearly corporate sales. • A function that takes an integer argument within the range of 0-3. The argument is to be used as a subscript into the division quarterly sales array. The function should return the value of the array element with that subscript. Write a program that creates an array of 3 Branch Sales objects. The program should ask the user to enter the sales for four quarters for each branch. After the data are entered, the program should display a table showing the branch sales for each quarter. The program should then display the total corporate sales for the year. Input Validation: Only accept positive values for quarterly sales figures. Show transcribed image text Files: BranchSales.cpp – BranchSales.h-mainBranch.cpp A corporation has three branches. Design a Branch Sales class that keeps sales data for a branch, with the following members: • An array of four elements for holding four quarters of sales figures for the branch. • A private static variable for holding the total corporate sales for all branches for the entire year. • A member function that takes four arguments, each assumed to be the sales for a quarter. The value of the arguments should be copied into the array that holds the sales data. The total of the four arguments should be added to the static variable that holds the total yearly corporate sales. • A function that takes an integer argument within the range of 0-3. The argument is to be used as a subscript into the division quarterly sales array. The function should return the value of the array element with that subscript. Write a program that creates an array of 3 Branch Sales objects. The program should ask the user to enter the sales for four quarters for each branch. After the data are entered, the program should display a table showing the branch sales for each quarter. The program should then display the total corporate sales for the year. Input Validation: Only accept positive values for quarterly sales figures.
Expert Answer
Answer to Files: BranchSales.cpp – BranchSales.h-mainBranch.cpp A corporation has three branches. Design a Branch Sales class that…
OR