teratail header banner
teratail header banner
質問するログイン新規登録

回答編集履歴

3

修正

2018/08/16 07:51

投稿

liveasnotes
liveasnotes

スコア1284

answer CHANGED
@@ -1,7 +1,7 @@
1
1
  動きますね
2
2
  ![イメージ説明](89681c802f942590b29f26b435c262f6.gif)
3
3
 
4
- あと,こういう書き方もあります
4
+ あと,こういう書き方もあります(fizzmodとbuzzmodが互いに素である場合)
5
5
 
6
6
  ```python
7
7
  def fizzbuzz(count=100,fizzmod=3,buzzmod=5):

2

語尾修正

2018/08/16 07:51

投稿

liveasnotes
liveasnotes

スコア1284

answer CHANGED
@@ -1,7 +1,7 @@
1
1
  動きますね
2
2
  ![イメージ説明](89681c802f942590b29f26b435c262f6.gif)
3
3
 
4
- あと,こういう書き方もあります
4
+ あと,こういう書き方もあります
5
5
 
6
6
  ```python
7
7
  def fizzbuzz(count=100,fizzmod=3,buzzmod=5):

1

追記

2018/08/16 07:33

投稿

liveasnotes
liveasnotes

スコア1284

answer CHANGED
@@ -1,1 +1,17 @@
1
+ 動きますね
1
- ![イメージ説明](89681c802f942590b29f26b435c262f6.gif)
2
+ ![イメージ説明](89681c802f942590b29f26b435c262f6.gif)
3
+
4
+ あと,こういう書き方もありますね
5
+
6
+ ```python
7
+ def fizzbuzz(count=100,fizzmod=3,buzzmod=5):
8
+ for cnt in range(1,count+1):
9
+ if cnt%(fizzmod*buzzmod) == 0: #MODIFIED
10
+ print("FizzBuzz")
11
+ elif cnt%fizzmod==0:
12
+ print("Fizz")
13
+ elif cnt%buzzmod==0:
14
+ print("Buzz")
15
+ else:
16
+ print(cnt)
17
+ ```