# 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"。


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://go.netdpi.net/control/05.04-wen-ti.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
