다트 게임문제출처 : codeground.org입력출처 : codeground.org출력출처 : codeground.org입출력예입력출력1Case#110 50 60 80 9013455 50 5545 -50-77 88-85 0이 문제의 경우에 각도에 관해서 미리 알아둬야 할게 있었습니다.소스.cppgithub1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 #include #include //sqrt(), atan2() 함수 struct rect { double x; d..