algoritms
algoritms
Start/stop
Decision
Input/ Output
Process
Flow line
EXAMPLES OF FLOWCHART
Algorithm: start
Using pseudocode Product_of_two_numbers
and flowchart, START
Declare num1, num2, product as
Read num1,
design a program integer
num2
that accepts two PRINT “Please enter two numbers”
READ num1, num2
numbers from the Product = num1 * num2
Product = num1 * num2
Print “ The product of two numbers is:
user, multiplies “, Product
Print Product
them and outputs END