Created
May 12, 2013 07:00
-
-
Save asbubam/5562691 to your computer and use it in GitHub Desktop.
Euler scala Ex06
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
1부터 10까지 자연수를 각각 제곱해 더하면 다음과 같습니다 (제곱의 합). | |
12 + 22 + ... + 102 = 385 | |
1부터 10을 먼저 더한 다음에 그 결과를 제곱하면 다음과 같습니다 (합의 제곱). | |
(1 + 2 + ... + 10)2 = 552 = 3025 | |
따라서 1부터 10까지 자연수에 대해 "합의 제곱"과 "제곱의 합" 의 차이는 3025 - 385 = 2640 이 됩니다. | |
그러면 1부터 100까지 자연수에 대해 "합의 제곱"과 "제곱의 합"의 차이는 얼마입니까? | |
*/ | |
object Ex06 extends App { | |
val N = 100 | |
var sum = 0 | |
var sum2 = 0 | |
for(i <- 1 to N) { | |
sum += i | |
sum2 += i * i | |
} | |
println(sum * sum - sum2) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment