[백준/JAVA] 조건문 - 2525번 오븐 시계

신승현·2022년 8월 4일
0

📝 문제


2525번 오븐 시계


✍ 풀이



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 n = sc.nextInt();

        int min = h * 60 + m + n;

        int hour = (min / 60) % 24;
        int minute = min % 60;

        System.out.printf("%d %d",hour , minute);

    }
}
profile
I have not failed. I've just found 10,000 ways that won't work. - Thomas A. Edison

0개의 댓글