dawpa2000
2007-02-05 13:58:41 UTC
1) How do you do that?
2) Are there more ways of doing that?
For example:
User enters a number with as many digits, lets say 123.
The output should come back as "1 , 2 , 3"
My code so far:
// User enters 123
Console.WriteLine("Enter a number :");
number = int.Parse(Console.ReadLine());
// I don't know what to do here, I need a loop of some kind