Computer Science, asked by kanamugirethibaut, 4 months ago

write a pseudocode that read two number and multiply them and print their product

Answers

Answered by Anonymous
3

Answer:

Write pseudo code that reads two numbers and multiplies them together and print out their product.

read numbers A and B from input medium.

compute C = A•B.

if C ≠ 0 print C then go to 1.

terminate the program.

Answered by Jasleen0599
1

Write a pseudocode that read two number and multiply them and print their product

1. Take the numbers A and B from the input source.

2. Determine C = A•B

3. Print C if C  ≠ 0, then jump to step 1.

4. shut down the application

  • The vast majority of programmers are familiar with pseudocode. It allows the programmer to focus solely on the code development process' algorithmic component. It can't be made into an executable programme through compilation. Capitalize the first letter of every word (often one of the main six constructs).
  • Per line, just one statement is allowed.
  • To demonstrate hierarchy, enhance readability, and highlight nested structures, indent.
  • Always use one of the Finish keywords to end multi-line sections (ENDIF, ENDWHILE, etc.).

#SPJ2

Similar questions