Computer Science, asked by stuf20911650, 8 months ago

Write pseudocode to multiply two numbers together and print their result

Answers

Answered by Anonymous
11

Explanation:

read numbers A and B from input medium

compute C=A.B

if C is unequal to 0print C then go to 1

terminate the program..

be smiling NANBA

Answered by SaurabhJacob
3

The स्यूडोकोड for multiplying two numbers is,

  1. Start
  2. Read A and B.
  3. Store A X B in C.
  4. Print C.
  5. End
  • It is a simple program for the depiction of the multiplication operation.
  • In the above set of instructions, we have read the inputs in A and B.
  • Then, we have multiplied the values of A and B and stored the result of multiplication in C.
  • Finally, we have outputted the value of C as the result of multiplication.
Similar questions