answersLogoWhite

0


Best Answer

Algorithm: multiples

input: two positive integers, m and n

output: print first n multiples of m

i = m;

for j = 1 to n

print i

i = i + m;

next j

User Avatar

Wiki User

7y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you write a program to print the first n multiples of 7?
Write your answer...
Submit
Still have questions?
magnify glass
imp