요르딩딩

[코테] 백준 : 2884 알람시계 본문

[코딩테스트]/문제풀이

[코테] 백준 : 2884 알람시계

요르딩딩 2021. 8. 18. 18:48
728x90
반응형
import java.util.*;
import java.io.*;

public class Main{
			public static void main(String[] args) throws IOException {
			BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
			
				String[] a = new String[2];
				a = br.readLine().split(" ");
				
			    int H = Integer.parseInt(a[0]);
				int M = Integer.parseInt(a[1]);
				
				int N = M-45;
				
				if(N>0) {
					M = M-45;
				}
				else if(N<0){
					if(H==0) {
						H=23;
					}else {
						H=H-1;
					}
					M=60+N;
				}
				else if(N==0) {
					M =0;
				}
				System.out.print(H+" "+M);
	}
}

주의

if문 작성시 모든 예외를 처리하는것이 중요 

 

728x90
반응형
Comments