Rower Bo (高数 + 物理)
Posted wethura
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Rower Bo (高数 + 物理)相关的知识,希望对你有一定的参考价值。
#include<bits/stdc++.h> #define esp (1e-5) using namespace std; int main(){ int a; double v1, v2; while(~scanf("%d%lf%lf", &a, &v1, &v2)){ if(a == 0) printf("0 "); else if(fabs(v2 - v1) < esp || v1 < v2) printf("Infinity "); else{ double ans = v1 * a / (v1 * v1 - v2 * v2); printf("%.10f ",ans); } } return 0; }
以上是关于Rower Bo (高数 + 物理)的主要内容,如果未能解决你的问题,请参考以下文章