/*
时间转换
*/
public class Solution {
//write your code here
public static void main(String[] args) {
//write your code here
System.out.println(convertToSeconds(2));
System.out.println(convertToSeconds(4));
}
public static int convertToSeconds(int hour){
return hour*3600;
}
}
评论 (4)
- 受欢迎
- 新
- 旧
你必须先登录才能发表评论
canghailongheng
18 十月 2022, 12:51
public static int convertToSeconds(int hour){
//有返回值的方法
return hour * 60 * 60 ;
}
0
null
12 五月 2020, 09:01
package zh.codegym.task.task03.task0312;
/*
*/
public class Solution {
//
public static void main(String[] args) {
System.out.println(convertToSeconds(2));
System.out.println(convertToSeconds(3));
}
public static int convertToSeconds(int hour){
int min = hour * 60 *60;
return min;
}
}
0
单身狗
9 七月 2020, 04:16
你为什么每次都要定义一个属性,直接返回不行吗?return hour * 60 *60;
0
Guadalupe Gagnon
23 十二月 2019, 19:12
cant help you if you do not share the solution
0