题意就是在轴承里面放珠子 给出轴承和珠子的直径 还有珠子的间距 问 最多可以放多少颗
oh yeah 又是一道水题 把大圆圆心和两个小圆圆心连接起来就比较容易看了
#include <stdio.h>
#include <math.h>
int main()
{
int t;
double D,d,s;
scanf("%d",&t);
while(t--)
{
scanf("%lf%lf%lf",&D,&d,&s);
int m=0;
m=(int)(acos(-1)/asin((d+s)/(D-d)));
printf("%d\n",m);
}
}