LoginSignup
0
1

More than 5 years have passed since last update.

【FizzBuzz問題】1から100までの整数に対し、 3で割り切れる場合は「Fizz」 5で割り切れる場合は「Buzz」 3でも5でも割り切れる場合は「FizzBuzz」 上記以外は数値そのまま を表示

Last updated at Posted at 2018-11-29

どうやら定番問題らしい

<!DOCTYPE html>
<html lang="ja">
<head>
   <meta charset="UTF-8">
   <title>FizzBuzz問題</title>
</head>
<body>
<script>
    for (var i = 1; i <= 100; i++) {
        if ((i%3 === 0) && (i%5 === 0)) { //3かつ5の倍数
        document.write('<p>FizzBuzz</p>');

        } else if (i%3 === 0 ) { //それ以外で3の倍数
        document.write('<p>Fizz</p>');

        } else if (i%5 === 0) { //それ以外で5の倍数
        document.write('<p>Buzz</p>');

        } else {
        document.write('<p>' + i + '</p>'); //<p>タグを忘れないように
        }
    }
</script>
</body>
</html>
0
1
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
0
1