不知道为什么是这样子的。。
#include<bits/stdc++.h> using namespace std; int m,n; int main(){ while(scanf("%d%d",&n,&m)!=EOF){ printf("%.5lf ",1.0*n/(n+m)); } }