BEAKJOON

백준(1330번 두 수 비교하기)풀이 C++

Shin_jisoo 2020. 12. 1. 14:47
728x90

www.acmicpc.net/problem/1330

 

1330번: 두 수 비교하기

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

www.acmicpc.net

#include <iostream>
using namespace std;

int main() {
	int a, b;
	cin >> a >> b;
	if (a > b)
		cout << ">";
	else  if (a < b)
		cout << "<";
	else
		cout << "==";
	return 0;
}

C++ if 문

if, else if, else

'BEAKJOON' 카테고리의 다른 글

백준(2753번 윤년)풀이 C++  (0) 2020.12.02
백준(9498번 시험 성적)풀이 C++  (0) 2020.12.01
백준(2588번 곱셈)풀이 C++  (0) 2020.12.01
백준(10439번 나머지)풀이 C++  (0) 2020.12.01
백준(10869번 사칙연산)풀이 C++  (0) 2020.12.01