Home
О нас
Products
Services
Регистрация
Войти
Поиск
Worley
@Worley
July 2023
1
11
Report
ДАМ 100 БАЛЛОВ
Обчислити відстань між двома точками з координатами А(х1,y1),B(x2 y2) Phyton
Please enter comments
Please enter your name.
Please enter the correct email address.
Agree to
terms of service
You must agree before submitting.
Send
Answers & Comments
homchik2009
Verified answer
МОЖНО ПОЖАЛУЙСТА ЛУЧШИЙ ОТВЕТ
Для вычисления расстояния между двумя точками А(x1, y1) и B(x2, y2) в Python можно использовать формулу Евклида:
import math
def distance(x1, y1, x2, y2):
return math.sqrt((x2 - x1)**2 + (y2 - y1)**2)
x1 = int(input("Enter x1: "))
y1 = int(input("Enter y1: "))
x2 = int(input("Enter x2: "))
y2 = int(input("Enter y2: "))
print("Distance:", distance(x1, y1, x2, y2))
Вычисленное расстояние выводится на экран.
3 votes
Thanks 1
More Questions From This User
See All
Worley
June 2023 | 0 Ответы
1000 22410 8110 27 10 6 10
Answer
Worley
June 2023 | 0 Ответы
24481a73e55da1f3ae730cc070998e26
Answer
Worley
June 2023 | 0 Ответы
100 1y1bx2 y2 phyton
Answer
Worley
June 2023 | 0 Ответы
1y1bx2 y2 phyton 649e7e8a9d040
Answer
Worley
June 2023 | 0 Ответы
1576 ana2sk2sli2srb2s
Answer
Worley
June 2023 | 0 Ответы
1y1bx2 y2 phyton
Answer
Worley
June 2023 | 0 Ответы
100 649d7f8958cfb
Answer
Worley
June 2023 | 0 Ответы
301 10 250 649c03808c578
Answer
Worley
June 2023 | 0 Ответы
301 10 250
Answer
Worley
February 2023 | 0 Ответы
10 24 840 63fbc6cbe9009
Answer
×
Report "ДАМ 100 БАЛЛОВОбчислити відстань між двома точками з координатами А(х1,y1),B(x2 y2) Phyton"
Your name
Email
Reason
-Select Reason-
Pornographic
Defamatory
Illegal/Unlawful
Spam
Other Terms Of Service Violation
File a copyright complaint
Description
Helpful Links
О нас
Политика конфиденциальности
Правила и условия
Copyright
Контакты
Helpful Social
Get monthly updates
Submit
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Verified answer
МОЖНО ПОЖАЛУЙСТА ЛУЧШИЙ ОТВЕТДля вычисления расстояния между двумя точками А(x1, y1) и B(x2, y2) в Python можно использовать формулу Евклида:
import math
def distance(x1, y1, x2, y2):
return math.sqrt((x2 - x1)**2 + (y2 - y1)**2)
x1 = int(input("Enter x1: "))
y1 = int(input("Enter y1: "))
x2 = int(input("Enter x2: "))
y2 = int(input("Enter y2: "))
print("Distance:", distance(x1, y1, x2, y2))
Вычисленное расстояние выводится на экран.