Programming Course in C# ¡Free!

12.04 - Date and time, continuous

 Saturday, April 06, 2013 published by Exercises C#
Create a program to display the current time in the upper right corner of the screen, with the following format:

12:52:03

it must pause for a second and display it again, in the same position.



using System;
using System.Threading;

class DateAndTimeContinuos
{
    static void Main()
    {
        while (true)
        {
            string time = DateTime.Now.ToLongTimeString();

            Console.SetCursorPosition(72, 1);
            Console.Write(time);

            Thread.Sleep(1000);
        }
    }
}