文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>VC中使用数学常量 M_PI

VC中使用数学常量 M_PI

时间:2010-03-17  来源:wangwayne

GCC,Turbo C中可以通过包含头文件math.h就可以直接使用圆周率 M_PI 了。

很多人说在VC里面是行不通的。

其实,只要你查看math.h,就知道,只需加上一条#define _USE_MATH_DEFINES就可以了


#include "stdafx.h"
#define _USE_MATH_DEFINES
#include <stdio.h>
#include <stdlib.h>
#include <math.h>

int _tmain(int argc, _TCHAR* argv[])
{
   printf( "An approximation of Pi is %f\n", M_PI);
   system("PAUSE");
   return 0;
}


相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载