POJ 1799 Yeehaa! G++ 几何 背
程序员文章站
2022-07-15 11:08:32
...
#include <iostream>
#include <cstdio>
#include <cmath>
using namespace std;
//英语 看博友分析 抄博友程序 几何 背
int main()
{
double pi=3.14159265358979;
double n;
cin>>n;
for(int i=0;i<n;i++)
{
double R,n;
cin>>R>>n;
printf("Scenario #%d:\n",i+1);
printf("%0.3f\n\n",R*sin(pi/n)/(1+sin(pi/n)));
}
return 0;
}
推荐阅读
-
POJ 1388 Hinge Node Problem G++ floyd扩展 背
-
POJ 1799 Yeehaa! G++ 几何 背
-
POJ 1722 SUBTRACT G++ 动态规划 背
-
POJ 1717 Dominoes G++ 动态规划 背
-
POJ 1721 CARDS G++ 看书 组合数学置换群 背
-
POJ 1770 Special Experiment G++ 例题 dfs动态规划 建图巧妙 背
-
POJ 1791 Paper Cutting G++ 枚举 背
-
POJ 2752 Seek the Name, Seek the Fame G++ 哈希未实现 KMP背
-
POJ 1544 A Puzzling Problem G++ bfs 背
-
POJ 1422 Air Raid G++ 二分图最小边覆盖 背