Multiplication table
Aim: Implement
a program to print the multiplication table (from 1 to 10) of a number input by
the user
Algorithm:
1.Start
2.Input
Number ‘num’
3.repeat
step 4 for i=1 to 11
4.print
num X i = num*i
5Stop
Program:
# take input from the
user
num = int(input("Display
multiplication table of? "))
# use for loop to
iterate 10 times
for i in range(1,11):
print(num,'x',i,'=',num*i)
Output:
Display
multiplication table of? 12
12
x 1 = 12
12
x 2 = 24
12
x 3 = 36
12
x 4 = 48
12
x 5 = 60
12
x 6 = 72
12
x 7 = 84
12
x 8 = 96
12
x 9 = 108
12
x 10 = 120
0 Comments:
Post a Comment