User:TechTeacher/My sandbox/Programming

From WikiEducator
Jump to: navigation, search

Introduction to Programming Pseudocode

START
  1. INPUT
    • Prompt the user for the name of an item and store it in a a variable called Item
    • Prompt the user for the price and store it in a variable called Price
    • Prompt the user for the quantity and store it in a variable called Quantity
  2. PROCESS
    • Set tCost to Price * Quantity
  3. OUTPUT
    • Print the name of the quantity; item; price and total cost with appropriate labels
STOP