プロジェクトオイラーQ1をJavascriptで解決したいのですが(これは私が知っている唯一の言語なので、私は初心者です)、私は私の結果をどのように表示するのか分かりませんHTML以外のコード私は周りにグーグルとHTMLとJavascriptを組み合わせてこのコードを書いて、Bracketsのソフトウェアの下でそれを走らせましたが、何も表示されていません。誰か助けてくれますか?オイラー#1〜Javascriptを解く
/* 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();
これを並べ替えると、3と5の両方で割り切れる数(45など)について考えることができます。 – georg