[BaekJoon] 4101번 - 크냐? [Java][C++]
[BaekJoon] 4101번 - 크냐? [Java][C++]
1. 문제 풀이
조건문을 활용해서 대소 관계를 판단하면 된다.
2. 코드
1. 풀이 [Java]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import java.io.*;
import java.util.*;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
StringTokenizer st;
while (true) {
st = new StringTokenizer(br.readLine());
int A = Integer.parseInt(st.nextToken());
int B = Integer.parseInt(st.nextToken());
if (A == 0) break;
if (A > B) {
bw.write("Yes\n");
} else {
bw.write("No\n");
}
}
bw.flush();
}
}
2. 풀이 [C++]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
while (true) {
int a, b;
cin >> a >> b;
if (a == 0) break;
if (a > b) {
cout << "Yes\n";
} else {
cout << "No\n";
}
}
}
This post is licensed under CC BY 4.0 by the author.