Im writing a program that takes a number inputed and prints the first n positive numbers beginning at 0 by 10's, separated by spaces.
For example: n=4 prints 0, n=65 prints 0 10 20 30 40 50 60
Im not understanding how to write this using an iterative method. Any help please?