코딩 테스트 (74) 썸네일형 리스트형 백준 11650 2차원 좌표 평면의 (x,y)의 좌표 정렬 문제. x,y 를 가지는 PINT2 구조체를 만들어 동적할당으로 배열 크기를 정해주고 sort 알고리즘에 Compare 함수를 만들어서 풀었다. #include #include #include #include using namespace std; struct PINT2 { int x; int y; }; bool Compare(PINT2 a, PINT2 b); int main(void) { ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int pointNum = 0; cin >> pointNum; PINT2* points; points = new PINT2[pointNum]; for (int i = 0;.. 백준 1120 #include #include using namespace std; int main(void) { ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); string a, b; cin >> a >> b; int num2 = 50; int num3 = a.size(); // hello int num4 = b.size(); // asdqwe for (int i = 0; i = num) { num2 = num; } if (num3 > num.. 이전 1 ··· 7 8 9 10 다음