m = float(input('Масса (кг) = '))
t1 = float(input('t1 (°С) = '))
t2 = float(input('t2 (°С) = '))
c = float(input('Теплоємнітсь речовиини (Дж/(кг·°C)) = '))
q = c * m * (t2 - t1)
print("Кількість теплоти: ", round(q, 5), "Дж")
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Код Python:
m = float(input('Масса (кг) = '))
t1 = float(input('t1 (°С) = '))
t2 = float(input('t2 (°С) = '))
c = float(input('Теплоємнітсь речовиини (Дж/(кг·°C)) = '))
q = c * m * (t2 - t1)
print("Кількість теплоти: ", round(q, 5), "Дж")