私信TA

用户名:Praguetramp

访问量:29551

签 名:

等  级
排  名 19
经  验 19970
参赛次数 0
文章发表 130
年  龄 0
在职情况 待业
学  校
专  业

  自我简介:

aura

解题思路:    打表如此简单

注意事项:    无

参考代码:

import java.util.Scanner;
public class Main {
	public static void main(String []args) {
	    Scanner in = new Scanner(System.in);
	    int h=in.nextInt(),m=in.nextInt();
	    if(h>=0&&h<=23&&m>=0&&m<=59) {
		    String arr[] = new String [] {"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"};
	 		if(m==0)
	 			System.out.println(arr[h]+" o'clock");
	 		else 
	 			System.out.println(arr[h]+" "+arr[m]);
	    }
 		in.close();
	}
}


 

0.0分

4 人评分

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

编程语言转换

万能编程问答  

代码解释器

代码纠错

SQL生成与解释

  评论区

打表牛逼!
2021-02-20 17:07:28
  • «
  • 1
  • »