PE-6 Sum square difference

Posted miria-486

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PE-6 Sum square difference相关的知识,希望对你有一定的参考价值。

package main

import "fmt"

func main() {
    sum := 0
    sum2 := 0
    for i := 1; i <= 100; i++ {
        sum += i
        sum2 += i * i
    }
    fmt.Println(sum*sum - sum2)
}  
结果:25164150

以上是关于PE-6 Sum square difference的主要内容,如果未能解决你的问题,请参考以下文章

#Leetcode# 633. Sum of Square Numbers

633. Sum of Square Numbers

633. Sum of Square Numbers

633. Sum of Square Numbers

[LeetCode] Sum of Square Numbers

[leetcode-633-Sum of Square Numbers]