a = float(input('Введите число a: '))
b = float(input('Введите число b: '))
c = float(input('Введите число c: '))
if (a < 1000) and (b < 1000) and (c < 1000):
print('Среднее: ', round(((a+b+c)/3),2))
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
a = float(input('Введите число a: '))
b = float(input('Введите число b: '))
c = float(input('Введите число c: '))
if (a < 1000) and (b < 1000) and (c < 1000):
print('Среднее: ', round(((a+b+c)/3),2))