백준 # 덩치

    백준 7568번 - 덩치

    www.acmicpc.net/problem/7568 7568번: 덩치 우리는 사람의 덩치를 키와 몸무게, 이 두 개의 값으로 표현하여 그 등수를 매겨보려고 한다. 어떤 사람의 몸무게가 x kg이고 키가 y cm라면 이 사람의 덩치는 (x,y)로 표시된다. 두 사람 A 와 B의 덩� www.acmicpc.net #include #include #include using namespace std; struct person{ int weight; int height; int order; }; int main() { int input = 0; cin >> input; person people[input]; for(int i=0; i> people[i].weight >> people[i].height; peopl..