http://acm.xidian.edu.cn/problem.php?id=1021
这数据真刁钻,PI不能自己输入,要用atan定义。
#include<iostream> #include<cstring> #include<cstdio> #include<algorithm> #include<cmath> #define PI atan(1)*4 using namespace std; int main() { int T; scanf("%d",&T); while(T--) { int n; double x; scanf("%d%lf",&n,&x); printf("%.4lf\n",0.25*n*x*x/tan(PI/n)); } return 0; }
时间: 2024-11-05 21:54:11