基础练习 时间转换
Posted Luking
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基础练习 时间转换相关的知识,希望对你有一定的参考价值。
---------------------------------------
---------------------------------------
1 import java.util.*; 2 public class Main { 3 public static void main(String[] args) { 4 int n = new Scanner(System.in).nextInt(); 5 int i,j,k; 6 i = n/3600; 7 j = (n%3600)/60; 8 k = (n%3600)%60; 9 System.out.println(i+":"+j+":"+k); 10 } 11 }
以上是关于基础练习 时间转换的主要内容,如果未能解决你的问题,请参考以下文章