《算法竞赛入门经典》第一章

1.PI除了宏定义外,更好的办法可以通过下面获得:#include <math.h> const double pi=acos(-1.0);2.通过程序计时:#include <time.h> int main(){     ...    ...