60.5k views
1 vote
how to Create a flowchart that will perform the multiplication, addition, subtraction and division of two numbers. First, the two numbers are given by the user. Then, given the two numbers, the 4 operations are performed. Lastly, it will display the results of the four operations. (Make use of valid variable names. Check our class reference for the description of a “valid” variable name).

User Hallie
by
7.3k points

1 Answer

3 votes
Start

Ask for two numbers from user

Store the numbers as A and B

Perform
A + B = C
A - B = D
A x B = E
A / B = F

Display as text
A + B = C
A - B = D
A x B = E
A / B = F

End
User Spitfiredd
by
7.3k points