answersLogoWhite

0


Best Answer

Since all decent programming languages have the multiplication operator, you simply multiply them. If you want to go into a bit more detail, it would be a bit like this:

Ask user for number "a"

Ask user for number "b"

Calculate result = a * b

Show result

(End)

Use the appropriate flow chart symbols for input, etc.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

9y ago

(Label1)Start Program:

(Label2)Prompt for First Number:

Enter First Number, Enter "End" to Exit Program

Store First Number after validity checking, If validity fails go to Label2

(Label3)Prompt for Second Number:

Enter Second Number, Enter "End" to Exit Program

Store Second Number after validity checking, If validity fails go to Label3

Do the multiplication operation, store product if necessary and display result

Go to Label 2

(Label4)Exit Program

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the flow chart for a program that finds two product numbers?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the pseudo code for a program that finds the product of two numbers?

int x; //first number int y; //second number int z = x*y;


How do you compile and execute a java program which finds out the highest of any five numbers?

it will be destroyed.


What is the linux program that finds and repair disk error?

fsck


Is there a program that finds a selected color and clicks on it?

Impossible sorry. :(


Make a C programming that displays the first four perfect numbers?

create a program that iterates until it finds a perfect number, then store that perfect number into an array. Continue iterating until you find three more. Then, you have an array of four perfect numbers.


What are the release dates for The Jack Benny Program - 1950 Jack Finds a Double 15-23?

The Jack Benny Program - 1950 Jack Finds a Double 15-23 was released on: USA: 12 March 1965


What does white pages do?

www.whitepages.com finds peoples address and phone numbers


Write a C program that takes a binary file as input and finds error check using different mechanisms?

write a c program that takes a binary file as input and finds error check using different mechanisms.


What happens to an invention after the inventor finds an investor?

I think it becomes a product that everybody can use


What is the program that finds websites and Web pages?

A "web crawler", A "search engine", A "web browser.


What is driver manager?

Driver Manager is a program that scans and finds out what is missing in your computer such as a missing driver.


Program which inputs two complex numbers and finds the sum and product of those numbers?

Try thisinput "z =?";x,yprint "z=";x;"+";y;"i"input "w =?";u,vprint "w=";u;"+";v;"i"print "z+w = ";x+u;"+";y+v;"i"print "z*w = ";x*u-y*v;"+";x*v+y*u;"i"example output:z=? 1,2w=? 2,3z+w = 3+5iz*w = -4+7iNote that it is possible to input negative imaginary parts. To display the sum and product correctly in that case, you need to make an intermediate step in the program which assigns the imaginary part to a separate variable, decide whether or not the imaginary part is negative, and then print a "+" if it is positive or no sign when it is negative (printing a negative number will automatically print the negative sign).Of course, you need to modify the program to your computer language.