I'm running a simple code to print numbers from 100 to 1:
for (int i = 100; i > 0; i--)
{
Console.Write(i + "\t");
}
in the console window the first row is printed fine. but the other rows don't start from the beginning of the line.(the column under 100 remains empty)
here's a picture of what I'm getting as a result. how can I fix this? my result