Created
April 25, 2020 03:06
-
-
Save m87carlson/4f05f7bf1228eb7b4f5e03257588252f to your computer and use it in GitHub Desktop.
fizzbuzz question
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
) | |
func main() { | |
for i := 1; i <= 100; i++ { | |
if i % 3 == 0 && i % 5 == 0 { | |
fmt.Println("FIZZBUZZ") | |
} else if i % 3 == 0 { | |
fmt.Println("FIZZ") | |
} else if i % 5 == 0 { | |
fmt.Println("BUZZ") | |
} else { | |
fmt.Println(i) | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment