Recent Posts
Notice
No Rules Rules
두 수 비교하기 (feat. 백준, 1330번) 본문
728x90
반응형
두 수 비교하기
https://www.acmicpc.net/problem/1330
반응형
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
using namespace std;
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
register int A, B;
cin >> A >> B;
if (A > B)
cout << ">";
else if (A < B)
cout << "<";
else
cout << "==";
return 0;
}
// *&)*@*
입력된 두 개의 정수를 비교하고 각 조건문에 해당되는 내용을 출력합니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
A-B (feat. 백준, 1001번) (0) | 2022.08.09 |
---|---|
A+B (feat. 백준, 1000번) (0) | 2022.08.09 |
잃어버린 괄호 (feat. 백준, 1541번) (0) | 2022.08.08 |
ATM (feat. 백준, 11399번) (0) | 2022.08.08 |
회의실 배정 (feat. 백준, 1931번) (0) | 2022.08.08 |
Comments