Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 | 27 | 28 |
Tags
- vitis
- hdl
- 리눅스
- verilog HDL
- amba
- linux
- Bus
- Zynq
- SQL
- 자격증
- FPGA
- AMBA BUS
- axi
- 코딩테스트
- 정처기
- boj
- Backjoon
- Vivado
- Xilinx
- verilog
- 백준
- 실기
- UNIX
- java
- chip2chip
- Beakjoon
- C++
- 정보처리기사
- baekjoon
- HDLBits
Archives
- Today
- Total
Hueestory
[1330] 두 수 비교하기 (C++) 본문
#include <iostream>
#include <algorithm>
using namespace std;
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int A; cin >> A;
int B; cin >> B;
if (A > B)
cout << ">" << endl;
else if (A < B)
cout << "<" << endl;
else
cout << "==" << endl;
return 0;
}

'PS > BOJ' 카테고리의 다른 글
| [2439] 별 찍기 - 2 (C++) (0) | 2024.04.25 |
|---|---|
| [2438] 별 찍기 - 1 (C++) (0) | 2024.04.25 |
| [1152] 단어의 개수 (C++) (0) | 2024.04.25 |
| [1008] A/B (C++) (0) | 2024.04.25 |
| [1001] A-B (C++) (0) | 2024.04.25 |
Comments