#11400: 題目低能自己蔣公式


crafting157 (- - - - - 以下只會藳齑 - - - - -)

學校 : 桃園市私立復旦高級中學
編號 : 49283
來源 : [111.250.211.151]
最後登入時間 :
2021-06-17 20:42:31
a780. 2. Magnificent Views -- HP CodeWars2008 | From: [203.71.2.66] | 發表日期 : 2016-09-30 20:42

#include<iostream>
#include<iomanip>
#include<cstdlib>
using namespace std;
int main ()
{
double a,b,c;
while(cin>>a>>b>>c)
{
if(a!=0&&b!=0&&c!=0)
{
cout<<fixed<<setprecision(2)<<a/b<<" "<<c/(a/b)<<endl;
}
else
{
return EXIT_SUCCESS;
}
}
}

 
ZeroJudge Forum