백준: 국영수 #include #include #include #include #include using namespace std; struct student {//student구조체 정의 string name;//이름 int ko;//국어점수 int en;//영어점수 int ma;//수학점수 }; bool cmp(student a, student b)//정렬에 사용될 조건정의 { if (a.ko == b.ko)//국어성적이 같다면 { if (a.en == b.en)//영어성적이 같다면 { if (a.ma == b.ma)//수학성적이 같다면 { return a.name b.ma;//수학성적이 감소하는 순서로 반환 } return..