标签:
2 10 10 5 1 3 0.5
14.4 4.3
#include<stdio.h> #include<math.h> int main(){ int n; double h,t,h1; scanf("%d",&n); while(n--){ scanf("%lf%lf%lf",&h,&t,&h1); //s1=t/(exp(1-h1/h)-1); printf("%.1lf\n",t/(log(h/h1))); } return 0; }
标签:
原文地址:http://blog.csdn.net/qq_18062811/article/details/44340469