藜麦小笼包


私信TA

用户名:dotcpp0680909

访问量:857

签 名:

刁常潇

等  级
排  名 299
经  验 5603
参赛次数 0
文章发表 70
年  龄 18
在职情况 学生
学  校 山东管理学院
专  业 软件工程

  自我简介:

一名喜欢走捷径的程序猿

TA的其他文章

参考代码:

import java.util.Scanner;
public class Main
{
    public static void main(String args[])
    {
        Scanner ss=new Scanner(System.in);
        int s=ss.nextInt();
        Time t=new Time();
        int a=t.hour(s);
        int b=t.minute(s);
        int c=t.second(s);
        System.out.print(a+":"+b+":"+c);
    }
}
class Time
{
    int hour(int a)
    {
        return a/3600;
    }
    int minute(int b)
    {
        return (b-b/3600*3600)/60;
    }
    int second(int c)
    {
        return c-c/3600*3600-(c-c/3600*3600)/60*60;
    }
}


 

0.0分

0 人评分

  评论区

  • «
  • »