https://www.acmicpc.net/problem/1085
#include <iostream>
using namespace std;
int main(){
int x,y,w,h;
cin >> x >> y >> w >> h;
int dis[4];
dis[0] = x;
dis[1] = h-y;
dis[2] = w-x;
dis[3] = y;
int result = dis[0];
for(int i=0; i<3;i++){
if(result > dis[i+1])
result = dis[i+1];
}
cout << result << "\n";
}
'Programming > BaekJoon' 카테고리의 다른 글
[C++] 백준 4344번 : 평균은 넘겠지 (0) | 2019.02.19 |
---|---|
[C++] 백준 1110번 : 더하기 사이클 (0) | 2019.02.19 |
[C++] 백준 10817번 : 세 수 (0) | 2019.02.18 |
[C++] 백준 2839번 : 설탕 배달 (0) | 2019.02.18 |
[C++] 백준 2741번 : N 찍기 (0) | 2019.02.18 |