JAVA 문제 77 - 24 BAEKJOON 1408


JAVA 문제 77 - 24 BAEKJOON 1408

JAVA 문제 77 - 24 BAEKJOON 1408 24 풀이 import java.io.*; import java.util.*; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int num = 0; int num2 = 0; StringTokenizer st = new StringTokenizer(br.readLine(), ":"); int h = Integer.parseInt(st.nextToken()); int m = Integer.parseInt(st.nextToken()); int s = Integer.parseInt(st.nextToken()); num = (h * 3600) + (m * 60) + s; st = new StringTokenizer...


#24_BAEKJOON1408 #JAVA #JAVA_24 #JAVA_24_BAEKJOON1408 #JAVA_BAEKJOON1408

원문링크 : JAVA 문제 77 - 24 BAEKJOON 1408