프로그램 언어 배우는 과정의 한 예제로는 적당하지만, 알고리즘 면으로는 매우 비효율적인 소스를 C, C++, Java, C#, Python, Ruby, Groovy, Lua, Octave 언어 등으로 작성해 보았다. * 모든 양의 약수를 구하고 소수인지 아닌지 판별하는 C 언어 소스 /** * Filename: findAllDivisorsNotGoodC_01.c * * Purpose: * Find all positive divisors of a given nonzero integer. * * With VC++ * Compile: cl findAllDivisorsNotGoodC_01.c * Execute: findAllDivisorsNotGoodC_01 * * With gcc * Compile: gcc f..