cuitao42


私信TA

用户名:dotcpp0634607

访问量:497

签 名:

等  级
排  名 170
经  验 6976
参赛次数 0
文章发表 18
年  龄 10
在职情况 学生
学  校
专  业

  自我简介:

解题思路:(x1-x2)^2+(y1-y2)^2=d^2

注意事项:

参考代码:

#include<iostream>

#include<cstdio>

#include<cmath>

using namespace std;

int main(){

    int x1,x2,y1,y2;

    double distance;

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

        distance=sqrt(pow((x1-x2),2)+pow((y1-y2),2));

        printf("%.2f\n",distance);

    }

    return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »