Advertisement
Guest User

Untitled

a guest
Sep 9th, 2014
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. import java.time.LocalDateTime;
  2.  
  3.  
  4. public class Problem5_CurrentDateTime {
  5. public static void main (String[] args){
  6. System.out.printf("%1$td/%1$tm/%1$tY %1$tH:%1$tM", LocalDateTime.now());
  7. }
  8.  
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement