For each of the following questions, find the inputs and outputs, write the pseudocode, desk check the pseudocode , create the flowchart , and code the solution in C++ .
1. Sue wants a program to compute the price of a sign that a customer might order. Here are her specifications
: ? The base cost of the sign is $35.
? The sign comes in either oak or pine. If the customer wants oak, the cost is $20. The pine is free .
? If the customer wants to add letters to the sign, the first 5 letters or characters are free.Any additional character or letter costs $4.
? The letters and characters come in black and white printing. The customer can choose to have gold – leaf lettering at a cost of $15.
Sue wants the program to start w ith the base price of the sign and ask the user the questions to determine how the user would like to customize the sign. At the end, the program will display the final cost for the sign for that customer. (Note – You will have a series of cout and cin s tatements followed by decisions that compute the costs based on the users inputs.
The C omplexIfEx.cpp file I provided will help you with this problem.?ComplexIfEx.cpp