月冷风霜
2015-11-18 21:37
#include <stdio.h>
#define PI 3.14
int main()
{
printf("圆周率:%f\n",PI);
return 0;
}
#define PI 3.14 可以和int main()调换顺序吗?
可以的
不过只有在 #define 语句之后,这个PI才有意义,之前是不能用的
非常感谢!
2015-11-19 13:29:03
共 1 条回复 >
C语言入门
926028 学习 · 20793 问题
相似问题
回答 1
回答 2
回答 3