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中文网其他相关文章!