欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

POJ 1799 Yeehaa! G++ 几何 背

程序员文章站 2022-07-15 11:08:32
...

POJ 1799 Yeehaa! G++ 几何 背

POJ 1799 Yeehaa! G++ 几何 背

POJ 1799 Yeehaa! G++ 几何 背

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