題目連結: https://zerojudge.tw/ShowProblem?problemid=d549
# 解題思路
直接說總結: PA2 + PC2 = PB2 + PD2,根畢氏定理有關
原因的話,可以去看看這部影片喔
# 程式碼
#include <iostream> | |
#include <cmath> | |
#include <cstdio> | |
using namespace std; | |
int main() | |
{ | |
long long int PA,PB,PC; | |
double PD; | |
while(cin>>PA>>PB>>PC) | |
{ | |
PD=sqrt(PA*PA+PC*PC-PB*PB); | |
printf("%.2f",PD); | |
cout<<endl; | |
} | |
} |