Reverse Serial Numbers To Print Console Application

Jayakumars
Posted by Jayakumars under ASP.NET AJAX category on | Points: 40 | Views : 1499
Reverse Serial Numbers To Print Console Application
============================================
Console.Write(" Serial Numbers :-> ");

for (int i = 10; i >= 1; i--)
{
Console.Write(i);
}
Console.Out.Flush();
var name = Console.ReadLine();
}

Comments or Responses

Login to post response