Question

Write a pseudocode to represent the logic of a program that allows the user to enter...

Write a pseudocode to represent the logic of a program that allows the user to enter an item description, quantity on hand, and unit price. The program will calculate the total price of all the items on hand. The output will consist of the item description, quantity on hand, unit price, and the total price.

Homework Answers

Answer #1

PSEUDOCODE

  1. Enter the Item Description to Item_Des
  2. Enter the quantity on Hand to quantity
  3. Enter the unit price of product to price
  4. Total = quantity * price
  5. PRINT : Item_Des
  6. PRINT : quantity
  7. PRINT : price
  8. PRINT : Total

FLOWCHART

OUTPUT

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
Write a pseudocode to represent the logic of a program that allows the user to enter...
Write a pseudocode to represent the logic of a program that allows the user to enter the rainfall for 12 months (January to December). The output will consist of the total rainfall for the year and the average rainfall for the 12 months.
1.Write pseudocode for a program that allows the user to input two numbers (X and Y)...
1.Write pseudocode for a program that allows the user to input two numbers (X and Y) and a code C. If the code has value 1, the program should output the larger of X and Y and otherwise output the smaller. Now convert your pseudocode to an assembly language program. Enter the program into the lab software assembler. Assemble the program and execute it with different input data. 2. Write pseudocode for a program that allows the user to input...
Design the logic for a program that allows a user to enter 10 numbers, stores the...
Design the logic for a program that allows a user to enter 10 numbers, stores the numbers in an array, then displays all of the numbers, the largest number, and the smallest.  create a solution algorithm using pseudocode  create a flowchart Need to do flowchart in Raptor and can't get it to do min and max or display the array
Create pseudocode to represent the logic of your program that: Asks the user how many Darth...
Create pseudocode to represent the logic of your program that: Asks the user how many Darth Vader Check Print Silk Ties they want to buy. Each Darth Vader Check Print Silk Tie costs the user $64.99. Calculate how much the user will spend. If the user spends over $200.00, they are a big spender. You will set the value of a character variable to indicate whether they are a big spender or not. Display a message stating how much the...
Write a program that allows the user to enter the last names of five candidates in...
Write a program that allows the user to enter the last names of five candidates in a local election and the votes received by each candidate. The program should then output each candidate’s name, votes received by that candidate, and the percentage of the total votes received by the candidate. Your program should also output the winner of the election. A sample output is as follows: Candidate Johnson Miller Duffy Robinson Sam Votes Received 5000 4000 6000 2500 1800 19300...
Problem description: Design the logic in pseudocode for a family membership management program to be used...
Problem description: Design the logic in pseudocode for a family membership management program to be used at Sweaty Time Gym. Monthly membership fees are $30 per adult and $10 per child. When the family first signs up for membership, a one-time activation fee of $50 (for the entire family, not per person) is charged. The program must allow the user to enter the number of adults and number of children in the family, and output the totals for adults and...
Problem description: Design the logic in pseudocode for a rental management program at Warm Buggy Mobile...
Problem description: Design the logic in pseudocode for a rental management program at Warm Buggy Mobile Home Park. Each month, tenants are charged $0.20 per gallon for water, $2 a month for trash pickup, $15 per car for parking, $5 for maintenance, and the rent for their apartment itself. The program must allow the user to enter the home number, the monthly rent, the number of gallons of water used, and the number of cars owned by the tenant(s), and...
C++ please Write a program that allows a user to enter any number of product prices...
C++ please Write a program that allows a user to enter any number of product prices and show the total of all of the products. Use 0.00 as a sentinel value. (while loop)
DATA STRUCTURE /C++ Write a program that allows the user to enter the last names offive...
DATA STRUCTURE /C++ Write a program that allows the user to enter the last names offive candidates in a local election and the votes received by each candidate. The program should then output each candidate’s name, votes received by that candidate, and the percentage of the total votes received by the candidate. Your program should also output the winner of the election. A sample output is as follows: Candidate Johnson Miller Duffy Robinson Sam Total Votes Received 5000 4000 6000...
Create a Python program that: Allows the user to enter a phrase or sentence. The program...
Create a Python program that: Allows the user to enter a phrase or sentence. The program should then take the phrase or sentence entered Separate out the individual words entered Each individual word should then be added to a list After all of the words have been place in a list Sort the contents of the list Display the contents of the sorted list with each individual word displayed on a separate line Display a message to the user indicating...