https://manual.cs50.io/
完整筆記:https://cs50.harvard.edu/x/2024/notes/1/
練習:https://cs50.harvard.edu/x/2024/psets/1/
首先我們應該要知道 3 個關鍵:
code filename.c // create a file // compiles the file from our instructions in C and creates an executable file called make filename ./filename // run
類型是指可以儲存在變數中的可能資料。類型非常重要,因為每種類型都有特定的限制。
位數限制了我們可以數的高低。
printf 允許多種格式程式碼,完整清單 https://manual.cs50.io/3/fprintf
int %i float %f char %c string %s
以上是CS# 計算機科學簡介 - 週筆記的詳細內容。更多資訊請關注PHP中文網其他相關文章!