Question one hundred and thirty-seven: calculate the distance between two points on the Coordinate

Source: Internet
Author: User

[Plain]

[Plain]

[Plain] # include <stdio. h>
# Include <stdlib. h>
# Include <math. h>
 
Float distance (int a, int B, int c, int d );
 
Int main (int argc, char * argv [])
{
Int;
Int B;
Int c;
Int d;

Printf ("Please enter the first coordinate points x:"); // enter the first Vertex
Scanf ("% d", & a, & B );
Printf ("Please enter the second coordinate points y:"); // enter the second Vertex
Scanf ("% d", & c, & d );

Printf ("The distance between two points is % f \ n", distance (a, B, c, d ));

System ("PAUSE ");
Return 0;
}
 
// Calculate distances
 
Float distance (int a, int B, int c, int d) // calculates the distance between two points.
{
Int x;
Int y;
Float distance;

X = abs (a-c );
Y = abs (B-d );
Distance = sqrt (x * x + y * y );

Return distance;
}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.