问的是:剪去一个矩形,比剪去一个三角形,要多剪的长度,答案即为(w+h)-sqrt(w*w+h*h)
。
#include <iostream>
#include <cmath>
#include <iomanip>
using namespace std;
int w, h;
int main()
{
cin >> w >> h;
cout << fixed << setprecision(8) << w + h - sqrtl(w * w + h * h) << endl;
return 0;
}