-
[SWEA-1976] 시각 덧셈 - Java공부/SWEA 2022. 6. 2. 16:42728x90
https://swexpertacademy.com/main/code/problem/problemDetail.do
코드
import java.util.Scanner;public class swea1976 {public static void main(String args[]) throws Exception{Scanner sc = new Scanner(System.in);int T;T=sc.nextInt();for(int test_case = 1; test_case <= T; test_case++){int arr[]=new int [4];for(int i=0;i<4;i++){arr[i]=sc.nextInt();}int h=arr[0]+arr[2];int m=arr[1]+arr[3];if(m>=60){h++;m%=60;}if(h>12){h%=12;}if(h==0){h=12;}System.out.println("#"+test_case+" "+h+" "+m);}}}728x90반응형'공부 > SWEA' 카테고리의 다른 글
[SWEA-1966] 숫자를 정렬하자 - Java (0) 2022.06.02 [SWEA-1970] 쉬운 거스름돈 - Java (0) 2022.06.02 [SWEA-1979] 어디에 단어가 들어갈 수 있을까 - Java (0) 2022.06.02 [SWEA-1986] 지그재그 숫자 - Java (0) 2022.06.01 [SWEA-1989] 초심자의 회문 검사 - Java (0) 2022.06.01