> 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/variable/0404_question.md).

# 04.06-問題

* 建立新變數的兩種方式為何？
* 執行後的 `x` 值是多少：\
  `x := 5; x += 1`?
* Scope 是什麼？你如何確定 Go 語言變數的 scope 呢？
* `var` 與 `const` 的差異為何？
* 使用範例程式做為一個起點，寫個程式將華氏轉為攝氏 (`C = (F - 32) * 5/9`)。
* 另外寫個程式將英尺 (ft) 轉換為公尺 (m) (`1 ft = 0.3048 m`)。
