/ * Today, I want to write something, I will write directly in this program, watch the football night today.
* The video of Zhang Yunning in 1998 is like yesterday. I was only 16 years old at the time.
* Zhang Yun 21 years old, then, the program started to let him open the reporter this year to apologize to Qu Leheng.
* The lens I saw him wrinkle, after all, he was 27, I was afraid, afraid of the lens.
* Go to his 32-year-old retirement, then I will be 27! I don't know if I am confused in the future.
* How to be good, no money, no cause, the future, a layer of fog, even
* You like people can't be with her, I really don't know what you can have?
* I just called my secret girl, let my mood calmly calmly, because
* She still has no marriage, I still have a chance, I still have time to achieve my own career, but I am afraid that I will 27
* When I am still like this, what should I do?
* It's time to sum up your own year. First, the more I want it.
* It will be difficult to get, so I have to hold a normal heart to treat things around, don't be strong.
* Seeking, otherwise it will not be able to get it, if you don't want to go to it, you will get it! Second
* When you encounter things, you have to calm, think about the worst step, to ensure that the calm mind goes to analyze and ask
*question! Forget everything!
* Let life start from now on! * /
Import java.util. *;
Public class born {
Public static void main (String [] args) {
// Gregoriancalendar's month starts from 0
Date born = new Gregoriancalendar (1982, 7, 7, 15, 40) .gettime ();
Date now = new date ();
Long live = now.gettime () - born.gettime ();
// 1000 milliseconds -> second 60 -> 分 60 -> Hours 24-> Tian 365-> Year
System.out.println ("Years are old, look at your growth: / n");
System.out.println ("I have lived:" (Live / (1000)) "Second");
System.out.Println ("I have lived:" (Live / (1000 * 60)) "points");
System.out.println ("I have lived:" (Live / (1000 * 60 * 60)) "Hour");
System.out.println ("I have lived:" (Live / (1000 * 60 * 60 * 24)) "God");
System.out.println ("I have lived:" ((Live / (1000 * 60 * 60 * 24)) / 365) "Year");
System.out.println ("/ n I still decadently live ...");
}
}