美文网首页
每日一练105——Java初学者系列#2时钟(8kyu)

每日一练105——Java初学者系列#2时钟(8kyu)

作者: 砾桫_Yvan | 来源:发表于2018-11-14 18:19 被阅读0次

题目

时钟显示午夜后的'h'小时,'m'分钟和's'秒。

你的任务是制作'过去'功能,返回转换为毫秒的时间。

#####例:

Past(0, 1, 1) == 61000

注意!h,m和s将只是自然数!

测试用例

import org.junit.Test;
import static org.junit.Assert.assertEquals;


public class ClockTest {
    @Test    
    public void test1(){

    assertEquals(Clock.Past(0,1,1),61000);
    }

  
}

解题

public class Clock
{
  public static int Past(int h, int m, int s) 
  {
    return (3600*h+60*m+s)*1000;
  }
}

后记

没啥可说的,简单的数学运算,每日一练由于某些重要原因搁置几个月了,重新捡起来继续练,先从简单的开始吧。

相关文章

网友评论

      本文标题:每日一练105——Java初学者系列#2时钟(8kyu)

      本文链接:https://www.haomeiwen.com/subject/ogajfqtx.html