所以我想通过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;
答案 0 :(得分:2)
查看
的结果console.log()
你需要按&#34; F12&#34;在浏览器中转到&#34; console&#34;。
你也可以做一个
alert("TEXT");
它会显示为警告。