Online Judge【郑轻】[1770]Lovely Ball问题描述 问题分析一道考验智商的题~哈哈哈数学or物理问题1 2 3 4 5 6 7 8 #include<stdio.h> int main() { double l,p,q; while(scanf("%lf %lf %lf",&l,&p,&q)!=EOF) { printf("%.3lf\n",l*(p/(p+q))); } return 0; }题目地址:【郑轻】[1770]Lovely Ball