Skip to content

Instantly share code, notes, and snippets.

@alexejVasko
Created February 15, 2016 12:19
Show Gist options
  • Save alexejVasko/f940d4c05bd2bd9102a1 to your computer and use it in GitHub Desktop.
Save alexejVasko/f940d4c05bd2bd9102a1 to your computer and use it in GitHub Desktop.
import java.util.Date;
public class Zakreplenie {
public static void main(String[] args) {
long curTime = System.currentTimeMillis();
Date curDate = new Date(curTime);
System.out.println(curTime);
System.out.println(curDate);
}
}
@liuiv15
Copy link

liuiv15 commented Feb 16, 2016

Задание требует применения только изученного материала, никаких типов Date. И формат вывода вам был заданный.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment