Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
129509 | 冯思诚 | 两点间距离计算 | C++ | 通过 | 100 | 0 MS | 248 KB | 218 | 2024-01-27 08:45:44 |
#include<iostream> #include<cstdio> #include<cmath> using namespace std; int main() { double x1,x2,y1,y2,AB; cin>>x1>>y1>>x2>>y2; AB=sqrt(((x1-x2)*(x1-x2))+((y1-y2)*(y1-y2))); cout<<int(AB); return 0; }