Windows 10
Python 3.7
Код:
Заранее благодарю за любую помощь
Python 3.7
Код:
Python:
import math
from math import sqrt
print("a1=")
a1 = int(input())
print("b1=")
a2 = int(input())
print("a2=")
b1 = int(input())
print("b2=")
b2 = int(input())
res = 0
for A in range(1, 10 ^ 6):
for B in range(1, 10 ^ 6):
t1 = pow(a1 * A + b1 * B, 2) + pow(a2 * A + b2 * B, 2)
t2 = pow(A, 2) + pow(B, 2)
temp=round(sqrt((t1/t2)),9)
if temp > res:
res = temp
print(res)
Заранее благодарю за любую помощь