#14623: C++ AC


elvisliu (方塊)

學校 : 臺北市私立延平高級中學
編號 : 69054
來源 : [203.72.178.252]
最後登入時間 :
2018-12-19 17:05:19
a780. 2. Magnificent Views -- HP CodeWars2008 | From: [203.72.178.252] | 發表日期 : 2018-07-26 14:50

#include <bits/stdc++.h>
using namespace std ;
int main() {
double a,b,c,m,n;
while(true){
cin>>a>>b>>c;
if(a!=0&&b!=0&&c!=0){
m=a/b;
cout<<fixed<<setprecision(2)<<m<<" ";
n=c/m;
cout<<fixed<<setprecision(2)<<n<<endl;
}
else if (a==0&&b==0&&c==0) break;
}
}

 
ZeroJudge Forum