-Code
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int h = sc.nextInt();
int m = sc.nextInt();
int s = sc.nextInt();
int time = sc.nextInt();
int answer = h * 3600 + m * 60 + s + time;
h = answer / 3600 % 24;
m = answer % 3600 / 60;
s = answer % 60;
System.out.println(h + " " + m + " " + s);
}
}
'Beakjoon&프로그래머스 > Java' 카테고리의 다른 글
[백준/Java] 2752번 세수정렬 (0) | 2022.04.16 |
---|---|
[백준/Java] 2588번 곱셈 (0) | 2022.04.16 |
[백준/Java] 2739번 구구단 (0) | 2022.04.16 |
[백준/Java] 2439번 별 찍기 - 2 (0) | 2022.04.16 |
[백준/Java] 2438번 별 찍기 - 1 (0) | 2022.04.16 |