Skip to content

Instantly share code, notes, and snippets.

@slopeofhope81
Created January 23, 2014 03:46
Show Gist options
  • Save slopeofhope81/8572466 to your computer and use it in GitHub Desktop.
Save slopeofhope81/8572466 to your computer and use it in GitHub Desktop.
Project Euler question #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.
/*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.
*/
var multiples = function (n) {
var sum = 0;
for (var i = 1; i < n; i++) {
if ((i % 3 == 0) || (i % 5 == 0)) {
sum += i;
}
}
document.write(sum);
};
multiples(1000);
@MuhammadMasab002
Copy link

MuhammadMasab002 commented Dec 23, 2022

You must be add a editer and live preview for a code, that can be people used it and edit by ownself in every question solution.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment