Программа:
Python:
xa, ya, xb, yb = int(input('xa = ')), int(input('ya = ')), int(input('xb = ')), int(input('yb = '))
print(f'|AB| = {pow((xb- xa)**2 + (yb - ya)**2, 1/2)}')
Результат:
xa = 2
ya = 1
xb = 10
yb = 7
|AB| = 10.0
Ответ:
ЕСЛИ КОД НЕ РАБОТАЕТ - СМОТРИ ФОТО
from math import sqrt
xa = int(input())
ya = int(input())
xb = int(input())
yb = int(input())
c = sqrt((xa - xb)**2 + (ya - yb)**2)
print(c)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Программа:
Python:
xa, ya, xb, yb = int(input('xa = ')), int(input('ya = ')), int(input('xb = ')), int(input('yb = '))
print(f'|AB| = {pow((xb- xa)**2 + (yb - ya)**2, 1/2)}')
Результат:
xa = 2
ya = 1
xb = 10
yb = 7
|AB| = 10.0
Verified answer
Ответ:
ЕСЛИ КОД НЕ РАБОТАЕТ - СМОТРИ ФОТО
from math import sqrt
xa = int(input())
ya = int(input())
xb = int(input())
yb = int(input())
c = sqrt((xa - xb)**2 + (ya - yb)**2)
print(c)