Pseudo-Code Worksheet

  1. Write pseudocode to represent the logic of a program that allows the user to enter a value. The program divides the value by 2 and outputs the result.
  2. Write pseudocode to represent the logic of a program that allows the user to enter two values. The program outputs the product of the two values.
  3. Write pseudocode to represent the logic of a program that allows the user to enter values for the width and length of a wall in feet. The program outputs the area of the wall in square feet.
  4. Modify the pseudocode that computes wall area to allow the user to enter the price of a gallon of paint. Assume that a gallon of paint covers 350 square feet of a wall. The program outputs the number of gallons needed and the cost of the job. (For this exercise, assume that you do not need to account for windows or doors, and that you can purchase partial gallons of paint.)
  5. Modify the program that computes paint cost to allow the user to enter the number of doorways that do not have to be painted. Assume that each doorway is 14 square feet. Output the number of gallons needed and the cost of the job.