1. 程式人生 > >Rower Bo (高數 + 物理)

Rower Bo (高數 + 物理)

pri using turn clu alt ++ pan inf def

技術分享圖片

#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\n");
        else if(fabs(v2 - v1) < esp || v1 < v2) printf("Infinity\n");
        else{
            
double ans = v1 * a / (v1 * v1 - v2 * v2); printf("%.10f\n",ans); } } return 0; }

Rower Bo (高數 + 物理)