Can that be done with no while loops?
static void Main(string[] args) { Console.WriteLine(\"Please enter a number\"); int number = Convert.ToInt32(C
Using recursion in this fashion is a very bad idea. It will cause memory problems very quickly. I know you want to avoid using while/for loops, but an array is really the best way to go.