> For the complete documentation index, see [llms.txt](https://go.netdpi.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://go.netdpi.net/control/05.04-wen-ti.md).

# 05.04-問題

* 下列的程式會印出什麼：

  ```
  i := 10
  if i > 10 {
      fmt.Println("Big")
  } else {
      fmt.Println("Small")
  }
  ```
* 寫一個程式，將 1 到 100 之間全部可以被 3 除的全部數字印出來（3, 6, 9 等）。
* 寫一個程式，印出 1 到 100 的數字，不過對於 3 的倍數要改成印出 "Fizz"，而 5 的倍數改成印 "Buzz"，對於 3 與 5 的公倍數則印出 "FizzBuzz"。
