Java: Display current date without time and current time without date
Write a Java program to display current date without time and current time without date.
Sample Solution:
Java Code:
import java.time.LocalDate;
import java.time.LocalTime;
import java.util.Date;
public class Main {
public static void main(String[] args){
LocalDate l_date = LocalDate.now();
System.out.println("Current date: " + l_date);
LocalTime l_time = LocalTime.now();
System.out.println("Current time: " + l_time);
}
}
Sample Output:
Current date: 2019-11-16 Current time: 07:54:47.217
N.B.: The value may be changed accroding to your system date and time.
Flowchart:
Java Code Editor:
Improve this sample solution and post your code through Disqus
Previous: Write a java program to convert String to date and time and vice a versa.
Next: Write a Java program to display combine local date and time in a single object.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics