Beakjoon&프로그래머스/Java
[백준/Java] 2530번 인공지능 시계
현장
2022. 4. 16. 20:11
-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);
}
}