I am trying to print numbers from 1 to 100 without using loops, using C#. Any clues?
By the time I answer this, someone will already have it, so here it is anyway, with credit to Caleb:
void Main() { print(0, 100); } public void print(int x, int limit) { Console.WriteLine(++x); if(x != limit) print(x, limit); }