Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yutotnh/fizzbuzz
各言語用のFizzBuzzプログラム
https://github.com/yutotnh/fizzbuzz
Last synced: about 2 months ago
JSON representation
各言語用のFizzBuzzプログラム
- Host: GitHub
- URL: https://github.com/yutotnh/fizzbuzz
- Owner: yutotnh
- License: mit
- Created: 2023-09-10T17:45:55.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-10T18:17:51.000Z (over 1 year ago)
- Last Synced: 2023-09-10T19:36:44.848Z (over 1 year ago)
- Language: C
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FizzBuzz
## FizzBuzzの仕様
- 1から100までの数について順番に処理を行う
- 3の倍数のときは数の代わりに「Fizz」と標準出力に出力
- 5の倍数のときは「Buzz」と標準出力に出力
- 3と5両方の倍数の場合には「FizzBuzz」と標準出力に出力
- 3と5の倍数以外の場合はその数を標準出力に出力
- 出力は1行につき1つの数値または文字列を標準出力に出力する
- 出力の最後に改行を入れる