User:TechTeacher/My sandbox/Programming
From WikiEducator
Introduction to Programming Pseudocode
START
- 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
- PROCESS
- Set tCost to Price * Quantity
- OUTPUT
- Print the name of the quantity; item; price and total cost with appropriate labels
STOP