Maha

Maha

  • NA
  • 0
  • 324k

How to use vertical tab

Aug 10 2012 6:04 AM
In the following program vertical output is expected using "\v ". Please use \v to get the following output.

1
2
3
4
5
6
7
8
9
10


using System;

namespace _5e11
{
class Table
{
static void Main(string[] args)
{
for (int x = 1; x <= 10; ++x)
{
Console.Write("\v{0}", x);
}



Console.ReadKey();

}
}
}


Answers (3)