解题思路: 打表如此简单
注意事项: 无
参考代码:
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 人评分
C语言程序设计教程(第三版)课后习题6.4 (C语言代码)浏览:623 |
不会做的浏览:954 |
C语言程序设计教程(第三版)课后习题6.9 (C语言代码)浏览:806 |
简单的a+b (C语言代码)浏览:661 |
文科生的悲哀 (C语言代码)浏览:1541 |
1048题解(读入回车问题)浏览:628 |
C语言程序设计教程(第三版)课后习题12.3 (C语言代码)浏览:587 |
A+B for Input-Output Practice (IV) (C语言代码)浏览:489 |
C语言程序设计教程(第三版)课后习题4.9 (C语言代码)浏览:584 |
字符串对比 (C++代码)浏览:597 |