asked 60.3k views
4 votes
1:Write pseudocode that reads two numbers and multiplies them together and print out their product.

1 Answer

5 votes

Answer:

1. Start

2. Declare variables num1 and num2 as integer or float type

3. Read num1 from the user

4. Read num2 from the user

5. Calculate product = num1 * num2

6. Print "The product of", num1, "and", num2, "is", product

7. End

Step-by-step explanation:

This pseudocode outlines the basic steps . You can write in any programming language

answered
User Yuriks
by
8.0k points