Write a Java Program to Get Current Date/TIme
import java.time.LocalDateTime; public class CurrentDateTime { public static void main(String[] args) { LocalDateTime current = LocalDateTime.now(); System.out.println("Current Date and Time is: " + current); } }