底层群友


私信TA

用户名:uq_12459991393

访问量:1451

签 名:

等  级
排  名 5430
经  验 1480
参赛次数 0
文章发表 8
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

TA的其他文章

解题思路:
纯手敲
注意事项:
注意minute为0的情况
参考代码:

import java.io.InputStreamReader;

import java.util.PriorityQueue;

import java.util.Scanner;



public class Main {

public static final double PI =  Math.PI;

    public static void main(String[] args)  {

        Scanner sc = new Scanner(new InputStreamReader(System.in));

        String[] time = {"zero","one","two","three","four","five","six","seven","eight","nine","ten",

        "eleven","twelve","thirteen","fourteen","fifteen","sixteen","seventeen","eighteen","nineteen","twenty",

        "twenty one","twenty two","twenty three","twenty four","twenty five","twenty six","twenty seven","twenty eight","twenty nine","thirty",

        "thirty one","thirty two","thirty three","thirty four","thirty five","thirty six","thirty seven","thirty eight","thirty nine","forty",

        "forty one","forty two","forty three","forty four","forty five","forty six","forty seven","forty eight","forty nine","fifty",

        "fifty one","fifty two","fifty three","fifty four","fifty five","fifty six","fifty seven","fifty eight","fifty nine"};

        int hour = sc.nextInt();

        int minute = sc.nextInt();

        if(minute==0){

        System.out.println(time[hour]+" o'clock");

        }else

        System.out.println(time[hour]+" "+time[minute]);

    }


      

}


 

0.0分

1 人评分

看不懂代码?想转换其他语言的代码? 或者想问其他问题? 试试问问AI编程助手,随时响应你的问题:

编程语言转换万能编程问答  

代码解释器

代码纠错

SQL生成与解释

  评论区

暴力哥
2022-01-14 11:41:30
666
2022-01-14 11:38:53
  • «
  • 1
  • »