下你所需,载你所想!
汇集开发技术源码资料

两点之间的距离.cpp

:276B :1 :2022-09-23 17:50:27

部分简介

两点之间的距离.cpp如果开发者对于本文件有需要的可以参考。
#include
#include
#include
using namespace std;

int main() {

double x1, y1, x2, y2;
cin >> x1 >> y1 >> x2 >> y2;
double re;
re = (x2 - x1) * (x2 - x1) (y2 - y1) * (y2 - y1);
re = sqrt(re);
printf("%.3f", re);
system("pause");

热门推荐

相关文章