Multiples of 3 and 5--project Euler 1

Source: Internet
Author: User

If we list all the natural numbers below is 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.

function Demo1 () {var multiplesarray = []; for (var i = 0; i<, i++) {if (i%5 = = 0 | | i%3 = = 0) {Multiplesarray.push (i);}} var Sumarray = 0;for (var j = 0; j<multiplesarray.length; j + +) {  Sumarray + = Multiplesarray[j];} return Sumarray;}

In fact, it is relatively simple, the above is to put all the numbers in an array to calculate the length of what other calculations more convenient, if you want to simple, use the following:

function Demo1 () {var sumarray = 0;for (var i = 0; i<; i++) {if (i%5 = = 0 | | i%3 = = 0) {Sumarray + = i;}} return Sumarray;}

The result is not written, run the code will know the result.

Multiples of 3 and 5--project Euler 1

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.