-
-
Save miracle0k/da7bc27a8034f973561d to your computer and use it in GitHub Desktop.
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
object p01 { | |
var sum = 0; //> sum : Int = 0 | |
for ( i <- 1 to 1000) { | |
if (i % 3 == 0 || i % 5 == 0) { | |
sum += i | |
} | |
} | |
println(sum) //> 234168 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment