Respuesta :
Answer:
Here is your pseudocode:
Declare number and result
Get number
Set result = number * 10
Print result
Explanation:
Declare two variables, number and result
Ask the user to enter the number
Multiply the number by 10 and set it to the result
Print the result
In programming, flowcharts and pseudocodes are used as types of algorithms used as models of actual programs.
The pseudocode is as follows:
Input num
Display num * 10
The flow of the above pseudocode is as follows
- The first line of the pseudocode gets input for num
- The second line prints the product of the user input and 10
The above explanation is also applicable to the flowchart (see attachment)
Read more about flowcharts and pseudocodes at:
https://brainly.com/question/24735155
