水题 ~~
学到些单词
diameter 直径
revolutions 转圈数
#include<stdio.h>
#define PI 3.1415927
int main()
{
int r,ans=0;
double l,d,t;
while(scanf("%lf%d%lf",&d,&r,&t)!=EOF,r)
{
l=PI*d*r/5280/12;
printf("Trip #%d: %.2lf %.2lf\n",++ans,l,l*3600/t);
}
return 0;
}