Ответ:
import math
q, x, y = map(int, input('Введите q, x, y : ').split())
a=2*math.pi*q**2
e=math.exp((-x**2-y**2)/(2*q**2))
print(e/a)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Код
Ответ:
import math
q, x, y = map(int, input('Введите q, x, y : ').split())
a=2*math.pi*q**2
e=math.exp((-x**2-y**2)/(2*q**2))
print(e/a)