3
2

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.

Fizz Buzzに対抗して世界のナベアツプログラムを紹介します。

Last updated at Posted at 2021-03-15

ヨーロッパで「Fizz Buzz」という多人数で1から順に数を数えて
・3の倍数を「Fizz」
・5の倍数を「Buzz」
・3でも5でも割り切れる数は「Fizz Buzz」
・それ以外は数字
を言うゲームがあります。世界のナベアツで有名な桂三度さんの
「3の倍数、3が付く数字を言うとアホになる」
というプログラムを書きました。JavaとPHPで1~50までのプログラムです。

Java

//世界の「ナベアツ」ゲーム
//1から50までのを対象に、
// 3の倍数、数字に3がつくと、アホになる
//
//
// 新規作成日 2021/3/15
// Author 乃木坂好きのITエンジニア

package paiza;

public class Sekainonabeatu {
 public static void main(String[] args) {
  for(int i=1;i<=50;i++)

 {

   if ((i % 3 ==0) ||( i/10 == 3) || (i%10 == 3)) {

       System.out.println(i + "になるとアホになる");

   }else {

       System.out.println(i);

   }

}

}

}

PHP
//
// ナベアツプログラム
// Date 2021/03/15 (新規作成)
// Author 乃木坂46好きのITエンジニア
//
//

分岐処理をマスターした方は是非挑戦してみてください。

3
2
4

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
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?