Question
Write the pseudocode to accept the item name, price and quantity from a user display the item name and it's total value
Answers
read name,price,quantity
value = price * quantity
display name,value
value = price * quantity
display name,value
Related Questions
Write the pseudocode for an application that allows a user to enter the price of an item and compute...
write a pseudocode to accept item name, price, and quality from a user and display the item name and...
write a pseudocode to accept item name, price, and quality from a user and display the item name and...