通过Javascript解决Euler#1

时间:2017-05-13 08:47:54

标签: javascript html

所以我想通过Javascript解决Project Euler Q1(因为它是我所知道的唯一语言 - 我是初学者),而且我不知道如何显示结果我的代码不是通过HTML。我用Google搜索并编写了这段代码,结合了HTML和Javascript,并在Brackets软件下运行,但没有任何内容出现。有人能帮助我吗?



     /* 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. */
    function math() {   
        var belowThousand = [];
        var sum = 0;
        for (var i=1; i<1000; i++) {
            if (i%3===0||i%5===0) {
                belowThousand.push(i);
                sum += i;
            }
        }
        console.log(sum);
    }
    
    math();  
&#13;
 
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:2)

查看

的结果
console.log()

你需要按&#34; F12&#34;在浏览器中转到&#34; console&#34;。

你也可以做一个

alert("TEXT");

它会显示为警告。