10 lines
173 B
Python
10 lines
173 B
Python
nbLegumes = int(input())
|
|
|
|
for loop in range(nbLegumes):
|
|
poidsLeg = float(input())
|
|
ageLeg = float(input())
|
|
prixLeg = float(input())
|
|
|
|
print(round(prixLeg / poidsLeg, 2))
|
|
|