竞赛
考级
SJZ
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,d; cin>>a>>b>>c>>d; printf("%.2f",sqrt(pow(fabs(d-b),2)+pow(fabs(c-a),2))); return 0; }
一枚button
法兰西玫瑰
#include <bits/stdc++.h> using namespace std; int main(){ int a,b,c,d; cin>>a>>b>>c>>d; double gg=abs(sqrt((c-a)(c-a)+(d-b)(d-b))); printf("%.2lf",gg); }
亚洲卷王 AK IOI
沈思邈
空降坐标:CP003103 请看代码
LiWei
#include <bits/stdc++.h> using namespace std; int a, b, c, d; double dis(int x1, int y1, int x2, int y2){ return sqrt((x2-x1)(x2-x1)+(y2-y1)(y2-y1)); } int main(){ cin >> a >> b >> c >> d; printf("%.2lf", dis(a, b, c, d)); return 0; }
呆
yy
准
耐高总冠军 张文杰
JMZ詹总
6.