[BOJ] 17091 단어 시계
문제 링크 www.acmicpc.net/problem/17091 풀이 그냥 케이스를 잘 따져서 출력하는 문제. 상당히 귀찮다. Java 코드 더보기 import java.io.*; public class Main { private static String[] hours = new String[]{ "one", "two", "three", "four", "five", "six", "seven", "eight", "nine", "ten", "eleven", "twelve", "one" }; private static String[] minutes = new String[]{ "one", "two", "three", "four", "five", "six", "seven", "eight", "nine", "te..