Date and time, continuous - Practice Exercises C# Sharp Lesson 12: Additional libraries Exercise 12.4: Date and time, continuous Objetive: 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. Source Code: C# JAVA 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); } } } Copy Exercise to ClipBoard Copy Code to ClipBoard Exercisey 12.4