문제 링크입니다: www.acmicpc.net/problem/21591
21591번: Laptop Sticker
The single line of input contains four integers $w_c$, $h_c$, $w_s$ and $h_s$ ($1 \le w_c, h_c, w_s, h_s \le 1,000$), where $w_c$ is the width of your new laptop computer, $h_c$ is the height of your new laptop computer, $w_s$ is the width of the laptop s
www.acmicpc.net
간단한 구현 문제였습니다.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
using namespace std; | |
int main(void) | |
{ | |
ios_base::sync_with_stdio(0); | |
cin.tie(0); | |
int wc, hc, ws, hs; | |
cin >> wc >> hc >> ws >> hs; | |
bool result = (wc - ws) >= 2 && (hc - hs) >= 2; | |
cout << result << "\n"; | |
return 0; | |
} |


개발환경:Visual Studio 2017
지적, 조언, 질문 환영입니다! 댓글 남겨주세요~
반응형
'알고리즘 > BOJ' 카테고리의 다른 글
백준 21355번 Personnummer (0) | 2021.04.25 |
---|---|
백준 21354번 Äpplen och päron (0) | 2021.04.25 |
백준 2765번 자전거 속도 (0) | 2021.04.25 |
백준 2754번 학점계산 (0) | 2021.04.25 |
백준 21598번 SciComLove (0) | 2021.04.25 |