Distance - c# | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Distance - c#

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 =√ (x2-x1)² + (y2-y1) ² https://code.sololearn.com/c93r85WoXKe2/?ref=app

15th Dec 2021, 5:03 AM
abacatinho
3 Answers
+ 2
Strange, you explain the task with an example of data entry and write code with three inputs instead of two, how is this possible? 🤔 And your conclusion is that this is not successful nonsense at all.
15th Dec 2021, 5:24 AM
Solo
Solo - avatar
15th Dec 2021, 7:14 AM
SoloProg
SoloProg - avatar
0
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 1.0 7.0 5.0 9.0 Output Sample 4.4721
15th Dec 2021, 5:05 AM
abacatinho