码迷,mamicode.com
首页 > 其他好文 > 详细

XDOJ_1021_水

时间:2016-10-12 14:19:01      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:

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;
}

 

XDOJ_1021_水

标签:

原文地址:http://www.cnblogs.com/zhurb/p/5952258.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!