두 가지 방법이 있다.
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();
m=m-45;
if(m<0){
m+=60;
h=h-1;
if(h<0)
h=23;
}
System.out.println(h + " " + m);
}
}
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();
if(m<45) {
m += 60;
h--;
if (h < 0) h = 23;
}
System.out.println(h + " " + (m-45));
}
}
'💡 Algorithm > 백준' 카테고리의 다른 글
[JAVA ] 백준 #2839- 설탕 배달 (0) | 2020.08.20 |
---|---|
[JAVA] 백준 #2741 - N 찍기 (Scanner,BufferedReader,BufferedWriter) (0) | 2020.06.24 |
[JAVA ] 백준 #15552 - 빠른 A+B (0) | 2020.06.24 |
[C] 백준 #10430 - 나머지 (0) | 2020.06.15 |
[C] 백준 #2588 - 곱셈 (0) | 2020.06.15 |
[JAVA] 백준 #9498 - 시험 성적 출력 (0) | 2020.06.12 |