Python 3.8.3
Код:
ответ: 4.08978900698481E+114
PascalABC.NET 3.7:
## |12,24,36,48,60,72,84|.Average(x → x**60).Print
Python 3.8.3
Код:
from math import powseq = [12, 24, 36, 48, 60, 72, 84]print(sum(map(lambda x: pow(x, 60), seq)) / len(seq))ответ: 4.08978900698481E+114
PascalABC.NET 3.7:
## |12,24,36,48,60,72,84|.Average(x → x**60).Print