We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 31c74c8 + d2d365e commit ecde79bCopy full SHA for ecde79b
1 file changed
CurrentDateAndTime.java
@@ -0,0 +1,7 @@
1
+public class CurrentDateAndTime{
2
+ public static void main(String args[]) {
3
+ LocalDateTime current = LocalDateTime.now();
4
+
5
+ System.out.println("Current Date and Time is: " + current)
6
+ }
7
+}
0 commit comments