We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 229f8d6 commit 4bff2f1Copy full SHA for 4bff2f1
multiplication_table
@@ -0,0 +1,4 @@
1
+num = int(input("Show the multiplication table of? "))
2
+# use for loop to iterate multiplication 10 times
3
+for i in range(1,11):
4
+ print(num,'x',i,'=',num*i)
0 commit comments