LoginSignup
4
2

More than 5 years have passed since last update.

1から100までの間で、3の倍数の数だけを足した合計値を表示

Posted at
<!DOCTYPE html>
<html lang="ja">
<head>
   <meta charset="UTF-8">
   <title>1から100までの間で、3の倍数の数だけを足した合計値</title>
</head>
<body>
<script>
    var sum = 0; //初期値0
    for (var i = 1; i <= 100; i++) {
        if (i%3 === 0) {
        sum = sum + i ; //sum += i でもOK
        }
    }
    document.write(sum);
</script>
</body>
</html>
4
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
2