Write pseudocode to represent the logic of a program that allows a user to enter three values then outputs the product of the three values. (If you're not sure of the definition of product be sure to look it up to verify its meaning.)

Respuesta :

Answer:

Following are the pseudocode  which is given below:

Explanation:

Step 1: Read the three input variable a,b,c by the user.

Step 2:Declared another variable called "product" which is used for storing the result the product of the three values.

Step 3:Perform operation [product=a*b*c] means to multiply a * b *  c and stored in the product.

Step 4: print product.