Home /
Expert Answers /
Computer Science /
do-not-write-in-pseudocode-only-use-flowgorithm-thank-you-use-flowgorithm-to-solve-the-problems-pa724
(Solved): *DO NOT WRITE IN PSEUDOCODE, ONLY USE FLOWGORITHM, (thank you)*Use flowgorithm to solve the problems ...
*DO NOT WRITE IN PSEUDOCODE, ONLY USE FLOWGORITHM, (thank you)*
Use flowgorithm to solve the problems:
Problem 1: Using Flogorithm Only
Problem 2: Using Flogorithm Only
Problem 3: Using Flowgorithm only
- Example of Flowgorithm
A gallon of paint covers 365 square feet and costs $26.85. Using flowgorithm determine and display the amount of paint it will take to paint a fence of a specified height and length, the fence is solid not rails. Your flowgorithm should perform the following tasks: Declare all required variables . . Declare constants and initialize them . Prompt for the input of the fence height . Prompt for the input of the fence length . Calculate the total square feet to be painted Calculate the required number of gallons of paint required, you cannot purchase a partial gallon of paint" Display, with appropriate output labels, the total square feet to be painted, the number of gallons of paint needed and the total cost of the paint
Write a flowgorithm program that will calculate a person's mobile phone bill based on plan chosen and the data used. The program should perform the following: . Ask for customer's mobile plan Ask for the number of gigabytes of data used . . Display an error message if the plan choice is invalid or the gigabytes used is less than zero (0) Mobile data plans are: Plan A 19.99/month, with 4 gigabytes data, additional data $10/gigabyte Plan B 29.99/month, with 8 gigabytes data, additional data $5/gigabyte Plan C 39.99/month, unlimited data Remember the following: use clear prompts for your input label each output number or name . • use comment box for your name, lab name and date at the top of the flowgorithm use other comments where appropriate use appropriate constants
Largest and Smallest Write a flowgorithm program that performs the following tasks: Utilizing nested loops the user inputs numbers, positive or negative . The loop determines the largest and smallest number input . The loop terminates when the user inputs a zero (0) . . Display the largest and smallest number entered at the end of the loop . Utilize an outside loop to keep the program running until told to stop Remember the following: use clear prompts for your input label each output number or name • use comment box for your name, lab name and date at the top of the flowgorithm use other comments where appropriate use appropriate constants Use your name as part of the submitted flowgorithm file name: such as SusanSmith_flowgorithmLab2-2.fprg or AJones flowlab 2.fprg
Main Below are the variable declarations necessary before you can use variables in your flowgorithm. Below are the steps to accomplish the tasks for this demostration flowchart Always use the output symbol to clearly state what the user needs to enter into the program. Real number01, number 02, total Output "Please input a value for the variable number 01 Input number 01 Output "Please input a value for the variable number 02 Input number 02 total number01 + number 02 Output "The input numbers were & number01 &and & number 02 Output "The loal of the two numbers is" & foul End