I am trying to print numbers from 1 to 100 without using loops, using C#. Any clues?
I can think of two ways. One of them involves about 100 lines of code!
There's another way to reuse a bit of code several times without using a while/for loop...
Hint: Make a function that prints the numbers from 1 to N. It should be easy to make it work for N = 1. Then think about how to make it work for N = 2.