Skip to content

Instantly share code, notes, and snippets.

@m87carlson
Created April 25, 2020 03:06
Show Gist options
  • Save m87carlson/4f05f7bf1228eb7b4f5e03257588252f to your computer and use it in GitHub Desktop.
Save m87carlson/4f05f7bf1228eb7b4f5e03257588252f to your computer and use it in GitHub Desktop.
fizzbuzz question
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