참고: Special Pythagorean triplet Problem 9 아래는 문제 해결에 도움되는 유효한 (정수론의 어떠헌) 정리도 사용하지 않고, 단순히 중첩된 for 반복문을 사용한 (이해하기 쉬운) C# 소스와 그 실행 결과이다. C# 소스: // Filename: PainSolutionEulerProjectNum9.cs // // Compile: csc PainSolutionEulerProjectNum9.cs // // Execute: PainSolutionEulerProjectNum9 // // See: https://projecteuler.net/problem=9 using System; namespace GeneralCommandLineApp { class Program { static..