Computer Science, asked by nirbhay41, 11 days ago

Write a python program to Print first five multiples of 7

Answers

Answered by dhapolanaveen7
1

Answer:

Multiple of 7 is only 1 and 7

Answered by rajdheerajcreddy
0

Answer:

n = int(7)

print("First five multiples of", n, "are")

print(7, 7 * 2, 7 * 3, 7 * 4, 7 * 5)

Similar questions