0% found this document useful (0 votes)
148 views2 pages

Jonathan T. Jorgio: Bsit 2E Auto Tect

The document contains two programming problems. The first asks to create a flowchart to calculate the factorial of a user-input number. The second asks to create a flowchart to display the multiplication table of a user-input number using a loop.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
148 views2 pages

Jonathan T. Jorgio: Bsit 2E Auto Tect

The document contains two programming problems. The first asks to create a flowchart to calculate the factorial of a user-input number. The second asks to create a flowchart to display the multiplication table of a user-input number using a loop.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

Jonathan T.

Jorgio
BSIT 2E AUTO TECT

Problem # 1. Create a flowchart to calculate the factorial value of the input number n!

Start

Number=0
Factorial=1

Print “ Enter a number”

Get number

If
T
Number >=1
factorial=factorial”numbe number
r

F Print “it’s factorial is “+


End
factorial
Problem# 2. Create a flowchart to accept input number from user and print multiplication
table of the given number using loop.

Start

c=1

Read n

m=nxc

Display m

c=c+1

Is YES
c<=10
?

NO

End

You might also like