首页 > 代码库 > XDOJ_1021_水

XDOJ_1021_水

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)*4using 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;}

 

XDOJ_1021_水