原题: In television contests, participants are often asked to choose one from a set of or doors for example, one or several of which lead to different prizes. In this problem we will deal with a speci
#include <bits/stdc++.h>using namespace std;int main(int argc, char const *argv[]){double a, b, c;while (cin >> a >> b >> c)printf("%.5f\n", b * (a + b - 1) / (a + b) / (a + b - c - 1));return 0;}