Understanding how to convey requirements into a program are fundamental to being able to write a program. The first step is to break down the program into logical steps. For this assignment, we create a flowchart and write pseudocode for the following program:
Write a program that will calculate the cost of installing fiber optic cable at a cost of .87 per ft for a company. Your program should display the company name and the total cost.
Create a flowchart and write pseudocode for the following steps:
- Display a welcome message for your program.
- Get the company name from the user
- Get the number of feet of fiber optic to be installed from the user
- Multiply the total cost as the number of feet times .87.
- Display the calculated information and company name.