0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【JavaScript】1から100までの整数に対し、 3で割り切れる場合は「Fizz」 5で割り切れる場合は「Buzz」 3でも5でも割り切れる場合は「FizzBuzz」 上記以外は数値そのまま を表示。 ※どの繰り返し処理を利用するかは自由。

Last updated at Posted at 2021-05-07
<!DOCTYPE html>
<html lang="ja">
<head>
   <meta charset="UTF-8">
   <title>FizzBuzz</title>
</head>
<body>
<script>
        var i = 0;
        while (i <= 100) {
          i++;
            if (i % 3 === 0 && i % 5 === 0){
            document.write('<p>FizzBuzz【' + i +  '】3でも5でも割り切れる</p>');
            } else if (i % 3 === 0) {
            document.write('<p>Fizz【' + i +  '】3で割り切れる</p>');
            } else if  (i % 5 === 0){
            document.write('<p>Buzz【' + i +  '】5で割り切れる</p>');
            } else {
            document.write('<p>' +i+ '</p>' );
            }
          }
</script>
</body>
</html>

※3と5の倍数である「15の倍数」のときは

"FizzBuzz"のみを表示して

"Fizz"及び、"Buzz"及び、数値を表示してはならない

image.png

0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?