No Rules Rules

두 수 비교하기 (feat. 백준, 1330번) 본문

생활/코테

두 수 비교하기 (feat. 백준, 1330번)

개발하는 완두콩 2022. 8. 8. 21:57
728x90
반응형

두 수 비교하기
https://www.acmicpc.net/problem/1330

 

1330번: 두 수 비교하기

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

www.acmicpc.net

 

반응형

 

// 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