기 ¶
문라 문만 고나 딩 방 됐다~~
대부 똑같 방로 리라 고 명 ^^
¶
~cpp
#include <iostream>
#include <cmath>
using namespace std;
double length, width;
void findMinMax()
{
if(length<width)
cout << (length+width - sqrt(length*length - length*width + width*width))/6.0 << " 0.000 " << length/2.0 << endl;
else
cout << (length+width - sqrt(length*length - length*width + width*width))/6.0 << " 0.000 " << width/2.0 << endl;
}
int main()
{
cout.setf(ios::fixed, ios::floatfield);
cout.setf(ios::showpoint);
cout.precision(3);
while(cin>>length>>width)
findMinMax();
return 0;
}










