题目
时钟显示午夜后的'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;
}
}
后记
没啥可说的,简单的数学运算,每日一练由于某些重要原因搁置几个月了,重新捡起来继续练,先从简单的开始吧。
网友评论