#include <stdio.h> #include <math.h> #include <stdlib.h>
时间: 2023-07-16 20:11:34 浏览: 239
# include <stdio.h>
这是一个 C 语言的程序的头文件部分,其中包括了常用的标准输入输出库函数和数学库函数。其中:
- stdio.h 是标准输入输出库头文件,包含了 printf、scanf 等函数;
- math.h 是数学库头文件,包含了数学函数,例如 sin、cos、sqrt 等函数;
- stdlib.h 是标准库的头文件,包含了一些通用的函数,例如 malloc、free、exit 等函数。
阅读全文