Project Euler- Problem 1
Here is the Euler problem 1
If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23.Find the sum of all the multiples of 3 or 5 below 1000.
Inspired by the Bret Vector's interactive demos, I just wanted to create the solution involving some interaction. So here is the Mathematica code-
Manipulate[Total[Select[Range[x], Mod[#, 3] == 0 || Mod[#, 5] == 0 &]],
{{x, 1, Style["Number", FontFamily > "Open"},
Alignment > {FontFamily > Style["Sum", 12]]
You will require Wolfram CDF player plugin [download here] to view this demo.
Since the Wolfram CDF Player plugin is no longer functional, I am sharing a video that shows an interactive solution to Euler Problem 1.