© andyliu666666 中级黑马 / 2015-11-7 23:26 / 2602 人查看 / 2 人回复 / 0 人收藏 转载请遵从CC协议 禁止商业使用本文
10黑马币
最佳答案package com.intheima;
import java.util.*;
public class Test4 {
public static void main(String[] args) {
int second,minute,hour,day;
Scanner in = new Scanner(System.in);
int time;
//循环读键盘输入的一个整数
System.out.print("请输入一个整数(0表示退出):");
while((time = in.nextInt()) != 0) {
if(time < 60) {
second = tim ...
| |
| |
| |