Код на Python:
V = int(input('V = '))
k = int(input('k = '))
t = int(input('t = '))
print('d =', (V * k * t) - (V * t))
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Код на Python:
V = int(input('V = '))
k = int(input('k = '))
t = int(input('t = '))
print('d =', (V * k * t) - (V * t))