在使用 #include "math.h" 和 #include <math.h>时,引号 与尖括号的区别如下
此时math.h_1 在工程文件中 math.h_2 在系统文件中
使用 "" 时,优先搜索工程文件所在目录,然后搜索编译器文件所在目录
使用<>时,与上面相反。