원시 피타고라스 삼조(primitive pythagorea triplet)를 생성하는 명령줄 어플(Command Line Application) C# 소스 C# 소스: // Filename: GeneratePrimitivePythagoreanTriplets.cs // // Compile: csc GeneratePrimitivePythagoreanTriplets.cs // // Execute: GeneratePrimitivePythagoreanTriplets 7 using System; using System.Collections.Generic; namespace GeneralCommandLineApp { class Program { public static Int64 GetGCD(Int64 xa, Int..