lcg007


私信TA

用户名:qq1102765728

访问量:18707

签 名:

Null

等  级
排  名 491
经  验 4633
参赛次数 1
文章发表 34
年  龄 0
在职情况 在职
学  校 同济大学
专  业

  自我简介:


解题思路:

注意事项:

参考代码:

#include<iostream>

#include<iomanip>

#include<math.h>

using namespace std;


int main()

{

double x1,y1,x2,y2,s;

while (cin >> x1>> y1>> x2>> y2)

{

s = (x1 - x2)*(x1 - x2) + (y1 - y2)*(y1 - y2);

cout <<setprecision(2)<<fixed<<sqrt(s)<<endl;

}

return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »