Java ShowCurrentTime(显示当前时间) 小时:分钟 :秒

ShowCurrentTime(显示当前时间) 小时:分钟 :秒

通过调用 System.currentTimeMillis() 返回当前时间
currentTimeMillis 返回从 GMT 1970 年 1 月 1 日 00:00:00 开始到当前时刻的毫秒数

   1.调用System.currentTimeMillis()方法获取1970年1月1日午夜到现在的毫秒数,
         并存放在变童totalMilliseconds中。
   2.通过将总毫秒数totalMilliseconds除以1000得到总秒数totalSeconds。
   3.通过totalSeconds%60得到当前的秒数。
   4.通过将totalSeconds除以60得到总的分钟数totalMinutes。
   5.通过totalMinutes%60得到当前分钟数。
   6.通过将总分钟数totalMinutes除以60获得总的小时数totalHours。
   7.通过totalHours%24得到当前的小时数。
import java.util.Scanner;
public class Course0716{
 public static void main(String[] args){
  long totalMilliseconds = System.currentTimeMillis();
  long totalSeconds = totalMilliseconds/1000;
  long currentSecond = totalSeconds%60;
  long totalMinutes = totalSeconds/60;
  long currentMinute = totalMinutes%60;
  long totalHours = totalMinutes/60;
  long currentHour = totalHours%24;
  System.out.println("Current time is "+currentHour+":"+currentMinute
             +":"+currentSecond+"GMT");
 }
}

你可能感兴趣的:(java练习题)