12 lines
181 B
C
12 lines
181 B
C
|
#include <stdio.h>
|
||
|
#include <math.h>
|
||
|
int main() {
|
||
|
|
||
|
const float pi = 3.141592653589793 ;
|
||
|
|
||
|
float pi_tan = acos(-1) ;
|
||
|
|
||
|
printf("%.16f %.16f %.16f \n",pi,pi_tan,M_PI);
|
||
|
|
||
|
}
|