정보 분류 : 조건문 문제 문제링크 풀이 import java.util.*; public class Main { public static void main(String args[]) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); int c = sc.nextInt(); int hour = (a * 60 + b + c) / 60;// (14*60+30+20)/60=14.8333... int minute = (a * 60 + b + c) % 60;// (14*60+30+20)%60=50 if(hour >= 24) { hour = hour-24; } System.out.printf("%s %s", hour, m..