SRM 144 Time

SRM 144 Time
1 public   class  Time  {
2    public String whatTime(int seconds) {
3        int h = seconds / 3600;
4        int m = seconds / 60 % 60;
5        int s = seconds % 60;
6        return (h + ":" + m + ":" + s);
7    }

8}

你可能感兴趣的:(SRM 144 Time)