FLOWCHART
Draw the hierarchy chart and design the logic for a program that calculates the projected cost of a remodeling project. Assume that the labor cost is $30 per hour. Design a program that prompts the user for a number hours projected for the job and the wholesale cost of materials. The program computes and displays the cost of the job, which is the number of hours times the hourly rate plus the 120% of the wholesale cost of materials. The program accepts data continuously until 0 is entered for the number of hours. Use appropriate modules, including one that displays End of program when the program is finished.
Answer:
FlowChart:

code:
#include<iostream> //i/o library
using namespace std;
int main(){
int status= 1, hours, wholeSaleCost;
float projectedCost;
while(status!=0)
{
cout<<"Please enter number of hours projected
for the job: "; //asking for the input from the user
cin>>hours;
cout<<"Please the wholsale cost of the
materials: ";
cin>>wholeSaleCost;
projectedCost= (hours*30)+(1.2*wholeSaleCost);
//calculating the projected cost
cout<<"The projected cost of the remodeling is:
"<<projectedCost<<endl;
cout<<"Enter 0 to end, any other to continue:
";
cin>>status;
}
return 0; //This is to make sure that the program
terminates
}
Output:

Please give it a thumbs up if this helped you, also provide your valuable feedback.
FLOWCHART Draw the hierarchy chart and design the logic for a program that calculates the...
Draw the hierarchy chart and design the logic for a program that calculates the projected cost of a remodeling project. Assume that the labor cost is $30 per hour. Design a program that prompts the user for a number hours projected for the job and the wholesale cost of materials. The program computes and displays the cost of the job which is the number of hours times the hourly rate plus the 120% of the wholesale cost of materials. The...
Draw the hierarchy chart and then plan the logic for a program for the sales manager of The RHC Company Ltd. The manager needs a program to determine the profit on any item sold. Input includes the wholesale price and retail price for an item. The output is the item's profit, which is the retail price minus the wholesale price. Use three modules. The main program declares global variables and calls housekeeping, detail, and end-of-job modules. The housekeeping module prompts...
This exercise requires designing a program which solves the problem described in the problem statement below. Provide comments as necessary in your pseudo-code and the Java program. Your solution must include these components: Flowchart Pseudo-code Hierarchy Chart Program Coded Program Output Problem Statement A painting company has determined that to paint 115 square feet of wall space, the task will require one gallon of paint and 8 hours of labor. The company charges $20.00 per hour for labor. Design a...
The Assignment Design a Visual Logic flowchart for a program that prompts the user to enter ten numbers one at a time. Use Console I/O (not the GUI interface). After the user has entered all ten number the program will then print out the total of those ten number and quit. Here is one example of what the program might look like when run: Please enter a number: 5 Please enter a number: 10 Please enter a number: 2 Please...
Question 1: A. Design a program using a flowchart or pseudocode that accepts a person’s loyalty card number and amount spent in the store last month. Display the date only if the customer is a high spender – a person who spent more than $1000 in the store. B. A program that accepts customer info continuously until a sentinel value is entered and displays a list of high spenders.
Design the logic for a program that allows the user to enter 15 test scores (values between 1-100), then displays the minimum. displays the maximum calculates and displays the average
The following program MUST be written in Flowgorithm and MUST use modules. Could someone please add screenshots to show me how this is supposed to look in Flowgorithm? I'm confused as to how to break it up into extra functions. For the programming problem, create the flowchart and enter it into the Flowgorithm program to test the accuracy of your logic. Save the file as Ch7Lab1. Payroll Program with Input Validation Design a payroll program that prompts the user to...
a. Create the logic for a program that calculates and displays the amount of money you would have if you invested $5000 at 2 percent simple interest for one year. Create a separate method to do the calculation and return the result to be displayed. b. Modify the program in Exercise 3a so that the main program prompts the user for the amount of money and passes it to the interest-calculating method. c. Modify the program in Exercise 3b so...
draw a flow chart diagram that can be used to write a program that: 1. will represent the logic of a program that allows the user to enter a value. the program divides the value by 2 and outputs the results. 2. will represent the logic of a program that allows the user to enter values for a salespersons base salary, total sales and commission rate. the program computes and outputs the salespersons pay by adding the base salary to...
Design the logic for a program that allows a user to enter 10 numbers, then displays the element number, value in the element, and its squared. The language is Python