在日常的解题中,可能使用圆周率π。当然可以直接使用数值。
1 #include <stdio.h> 2 #define PI 3.1415928 //直接define给PI 赋值 3 int main() 4 { 5 ... 6 ... 7 return 0; 8 }
但我们记忆中的数值可能出错,所以也可以使用C语言的math.h来实现。
1 #include <stdio.h> 2 #include <math.h> 3 #define PI acos(-1.0) //或者 4.0*atan(1.0) 4 int main() 5 { 6 printf("PI=%f\n",PI); 7 return 0; 8 }
时间: 2024-11-07 01:23:43