[求助]预处理命令的作用
#include"stdio.h"#include"math.h"
main()
{
double x,s;
printf("input number:\n");
scanf("%lf",&x);
s=sin(x);
printf("sine of %lf is %lf\n",x,s);
getch();
}
抄的WIN-TC教程里的一段代码(自己不会写),能给我解释下预处理命令的意思吗?
#include"stdio.h"
#include"math.h"
这两段的意思,他们的作用.
[此贴子已经被作者于2007-7-12 10:10:34编辑过]