write a pseudocode to accept item name, price, and quantity from a user and display the item name and it's total value. the total value can be calculated as the product of price and quantity

1 answer

I assume you can do the I/O
As for the total value,
total_value = price * quantity

I can pretty much guarantee that no matter what kind of programming task you have to do, someone has posted a code snippet online that will do just what you want.