Math, asked by saachiagrawal, 1 month ago

urgently need to ccomplete
computer

Attachments:

Answers

Answered by nishantsinghrajput94
0

Answer:

Step-by-step explanation:

Algorithm to accept two numbers from user and find its product:

Start

Declare variables num1, num2, product

Read the value of num1 from the user

Read the value of num2 from the user

Calculate the product of num1 and num2 and store it in the variable product

Display the value of product

Stop

Flowchart to accept two numbers from user and find its product:

+--------------------------+

| Start                    |

+--------------------------+

|                          |

v                          |

+--------------------------+

| Declare num1, num2,      |

| and product              |

+--------------------------+

|                          |

v                          |

+--------------------------+

| Read num1 from user      |

+--------------------------+

|                          |

v                          |

+--------------------------+

| Read num2 from user      |

+--------------------------+

|                          |

v                          |

+--------------------------+

| Calculate product = num1 |

| * num2                   |

+--------------------------+

|                          |

v                          |

+--------------------------+

| Display product          |

+--------------------------+

|                          |

v                          |

+--------------------------+

| Stop                     |

+--------------------------+

Similar questions