[SWEA 1245] 균형점
2021. 10. 20. 16:46
SWEA 1245. [S/W 문제해결 응용] 2일차 - 균형점 문제 링크 https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV15MeBKAOgCFAYD#none SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com C++ 풀이 #include #include using namespace std; int N; //자성체 개수 double x[10], weight[10]; //좌표, 무게 배열 //두 자성체 사이의 균형점 위치 찾기 void find_val_point(int index, double x1, double x2) { d..