meters = int(input('Введите метры: '))
print('1) Миллиметры :', meters * 1000)
c = int(input('Введите с: '))
k = 3.4 * c + 1/6 * (c - 4.8)
print('2) k =', k)
a = int(input('Введите a: '))
x = int(input('Введите x: '))
y = 7.2 * x + 1/3 * (a + 5.8)
print('3) y =', y)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
meters = int(input('Введите метры: '))
print('1) Миллиметры :', meters * 1000)
c = int(input('Введите с: '))
k = 3.4 * c + 1/6 * (c - 4.8)
print('2) k =', k)
a = int(input('Введите a: '))
x = int(input('Введите x: '))
y = 7.2 * x + 1/3 * (a + 5.8)
print('3) y =', y)