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 1 year has passed since last update.

JavaScriptでfizzbuzz

Last updated at Posted at 2023-09-11

JavaScriptでfizzbuzzやってみた

1~100の数字で3で割れるものを「fizz」、5で割れるもの「buzz」、
どちらでも割れる場合は「fizzbuzz」を数値の後に出力。

さっそく書いてみる

main.js
for(let i = 0; i < 100; i++) {
 if(i % 3 === 0 && i % 5 ===0 ){
  console.log(`${i} fizzbuzz`);
 } else if(i % 3 === 0){
  console.log(`${i} fizz`);
 } else if(i % 5 === 0){
  console.log(`${i} buzz`);
 }else{
  console.log(i);
 }
}

結果
スクリーンショット 2023-09-11 21.49.29.png

もっと良い書き方がありそうだがとりあえず完成。

0
0
2

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?