class-notes/2303/笔记/第一周.md
2025-02-17 09:38:23 +08:00

46 lines
1.2 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## 课程笔记
https://git.smallkun.cn
## 学习方法
1.先听懂语法
2.跟着敲语句
3.练习
## 重要性
1. 技能高考中只考40分 两个代码填空题
2. 计算机专科、本科专业必修课70%计算机相关专业 PPT
3. 后续其他课程的前置课程(基础部分)
4. 升学考试 专升本、硕士研究生入学考试
## 授课学时
每周6学时 预期 17~18周
## HelloWorld
```c
//Hello World
//用来输入输出数据
//C程序需要一个入口 这个入口 叫做main函数
//int 是返回值类型 main是函数名
//()中的叫形参列表
//{}函数体
//右键项目名称->属性->配置属性->链接器->系统->子系统->控制台
#include <stdio.h> //预处理 导入一个指定的头文件
#include <stdlib.h>
//Ctrl + S保存 Ctrl + F5运行
int main(void){
//"西文字符下的双引号
//\n转义字符 换行
//system("color hh")函数 hh是两个十六进制数字
//前面一位代表背景颜色 后面一位代表字体颜色
system("color fc");//改变控制台的颜色 前浅色 后白
printf("Hello World\n");
//格式化输出
//printf(数据的格式, 数值1, 数值2);
return 0;//函数的返回值
}
```