码迷,mamicode.com
首页 > 其他好文 > 详细

π实现

时间:2015-11-06 00:07:46      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:

  在日常的解题中,可能使用圆周率π。当然可以直接使用数值。

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 }

技术分享

π实现

标签:

原文地址:http://www.cnblogs.com/rldlfm/p/4941156.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!