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 a825664 commit 7fa6fd4Copy full SHA for 7fa6fd4
ex009.py
@@ -1,3 +1,4 @@
1
+#multiplication table.
2
#09- Write a program that reads any integer and displays its multiplication table on the screen.
3
number = int(input('Enter a value:'))
4
print('-=' * 20)
@@ -15,6 +16,7 @@
15
16
print('{} x 9 = {}.'.format(number, number*9))
17
print('{} x 10 = {}.'.format(number, number*10))
18
19
+#tabuada.
20
#9: Faça um programa que leia um número inteiro qualquer e mostre na tela a sua tabuada.
21
'''numero = int(input('Digite um número inteiro e eu lhe mostrarei sua tabuada:'))
22
print(f'A tabuada do número {numero}:')
0 commit comments