Draw a flowchart to display table of a number
Answers
Answered by
0
Explanation:
adsbygoogle = window.adsbygoogle || []).push({ google_ad_client: "ca-pub-2960223314593660", enable_page_level_ads: true });
TecGlance
Main Menu
Program to print multiplication table of any number.
Arun 04:52 0
Algorithm:
Step 1: Start
Step 2: Assign i=1
Step 3: Read a number, num
Step 4: Repeat step 5 until i=11 reach
Step 5: Print num*i
Step 6: Stop
Flowchart:
Program code:
num=int(input('Enter a number '))
i=1
for i in range(1,11):
print num,'*',i,'=',num*i
mark me as BRAINLIEST
Similar questions