Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion exercises/my_first_io/problem.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

撰寫一個程式,使用 **同步(Synchronous)** 操作方式的檔案系統 API。這個程式要開啟指定檔案,然後讀取並計算該檔案內容的行數,最後利用 console (標準輸出 stdout)方法將計算結果輸出到終端機命令列,輸出的結果就像是使用下列終端機命令一樣:
撰寫一個程式,使用 **同步(Synchronous)** 操作方式的檔案系統 API。這個程式要開啟指定檔案,然後讀取並計算該檔案內容中換行符號的數目,最後利用 console (標準輸出 stdout)方法將計算結果輸出到終端機命令列,輸出的結果就像是使用下列終端機命令一樣:

```
cat 檔案路徑 | wc -l
Expand Down