Computer Science, asked by DollySingh231206, 1 month ago

Write a program to input a number and display its multiples up to 10 terms using while loop. for beginners ​

Answers

Answered by jai696
2

\huge\red{\mid{\fbox{\tt{Using\: Python\: 3}}\mid}}

n = int(input("n: "))

counter = 1

while counter < 11:

print(f"{n} x {counter} = {n * counter}")

counter += 1

\large\mathsf\color{lightgreen}useful?\: \color{white}\longrightarrow\: \color{orange}brainliest!

Similar questions