На Python:
# Среднее арифметическое
a, b, c = int(input()), int(input()),
int(input())
print((a+b+c)/3)
# Окружность
from math import pi
r = int(input())
print(2*pi*r)
# Наибольшее из четырех
a, b, c, d = int(input()), int(input()),
int(input()), int(input())
print(max(a, b, c, d))
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
На Python:
# Среднее арифметическое
a, b, c = int(input()), int(input()),
int(input())
print((a+b+c)/3)
# Окружность
from math import pi
r = int(input())
print(2*pi*r)
# Наибольшее из четырех
a, b, c, d = int(input()), int(input()),
int(input()), int(input())
print(max(a, b, c, d))