Date and time, continuous - Practice Exercises Java 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: JAVA C# public class Main { static void main(String[] args) { while (true) { String time = java.time.LocalDateTime.now().ToLongTimeString(); Console.SetCursorPosition(72, 1); System.out.print(time); Thread.sleep(1000); } } } Copy Exercise to ClipBoard Copy Code to ClipBoard Exercisey 12.4