Exercise
Date and time continuous
Objetive
Create a program that shows the current time in the top-right corner of the screen with the format:
12:52:03
The program should pause for one second and then display the time again in the same location.
Example Code
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);
}
}
}