Computer Science, asked by dassahelijenny, 7 months ago

Write a program to print multiplication table of a given number using for loop.

Answers

Answered by BrainlyProgrammer
2

\huge\star\underbrace{\mathtt\red{⫷QúÊßTïØñ⫸}}\star

  • Print the multiplication table of a number

\huge\star\underbrace{\mathtt\red{⫷❥ᴀ᭄} \mathtt\green{n~ }\mathtt\blue{ §} \mathtt\purple{₩}\mathtt\orange{Σ} \mathtt\pink{R⫸}}\star

  • This is done in QBASIC

CLS

INPUT N

FOR I=1 TO 10 STEP 1

PRINT N*I

NEXT I

END

Answered by BrightOne
0

num = int(input("Show the multiplication table of? "))

for i in range(1,11):

   print(num,'x',i,'=',num*i)

Use '#' for comments

Similar questions