Scroll Top

Euler no.1 : Multiples of 3 and 5

euler_portrait

Multiples of 3 and 5

1000보다 작은 자연수 중에서 3 또는 5의 배수를 모두 더하면?

package main

func main() {
        sum := 0

        for i := 0; i<=1000; i++ {
                if i%3 == 0 {
                        sum = sum + i
                        continue
                }
                if i%5 == 0 {
                        sum = sum + i
                        continue
                }
        }
        println("1000미만의 3또는 5의 배수의 합은 : ", sum)
}
┌──(daleji㉿DESKTOP)-[~]
└─$ go run euler1.go
1000미만의 3또는 5의 배수의 합은 :  234168

Related Posts

Leave a comment

You must be logged in to post a comment.