URI - BEECROWD - BEE Online Judge Solution 1015 | Distance Between Two Points - URI - BEECROWD - BEE 1015 Solution in C,C++,Python
Read the four values corresponding to the x and y axes of two points in the plane, p1 (x1, y1) and p2 (x2, y2) and calculate the distance between them, showing four decimal places after the comma, according to the formula:
Distance =
Input
The input file contains two lines of data. The first one contains two double values: x1 y1 and the second one also contains two double values with one digit after the decimal point: x2 y2.
Output
Calculate and print the distance value using the provided formula, with 4 digits after the decimal point.
Input Sample | Output Sample |
1.0 7.0 | 4.4721 |
-2.5 0.4 | 16.1484 |
2.5 -0.4 | 16.4575 |
The formula to calculate the area of a circumference is defined as A = π . R2. Considering to this problem that π = 3.14159:
ReplyDeleteCalculate the area using the formula given in the problem description.