song.log

[Algorithm] 백준 단계별로 풀어보기 - 2.if문 본문

StudyLog/Algorithm

[Algorithm] 백준 단계별로 풀어보기 - 2.if문

SingaKorean 2019. 12. 19. 01:17
반응형

1330. 두 정수 A와 B가 주어졌을 때, A와 B를 비교하는 프로그램을 작성하시오.

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import java.util.Scanner;
 
public class Main{
 
    public static void main(String[] args) {
          Scanner scan = new Scanner(System.in);
        int a = scan.nextInt();
        int b = scan.nextInt();
        if(a>b) {
            System.out.println(">");
        }else if(a<b) {
            System.out.println("<");
        }else {
            System.out.println("==");
        }
    }
}
 

 

2884. 알람 시계

 

첫째 줄에 두 정수 H와 M이 주어진다. (0 ≤ H ≤ 23, 0 ≤ M ≤ 59) 그리고 이것은 현재 상근이가 맞춰놓은 알람 시간 H시 M분을 의미한다.

입력 시간은 24시간 표현을 사용한다. 24시간 표현에서 하루의 시작은 0:0(자정)이고, 끝은 23:59(다음날 자정 1분 전)이다. 시간을 나타낼 때, 불필요한 0은 사용하지 않는다.

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import java.util.Scanner;
 
public class Main{
 
    public static void main(String[] args) {
       Scanner scan = new Scanner(System.in);
        int h = scan.nextInt();
        int m = scan.nextInt();
        if(m>45) {
            m = m-45;
            System.out.println(h+" "+m);
        }
        else {
            m = (60+m-45)%60;
            h = h-1;
            if(h<0){
                h =23;
            }
            System.out.println(h+" "+m);
        }
    }
}
반응형
Comments