Computer Science, asked by manulamba00, 5 months ago

For what values, will this code fragment print “water”?

if temp < 32:

print (“ice”)

elif temp < 212:

print (“water”)

else:

print (“steam”)​

Answers

Answered by subhaspally351
1

Answer:

For values from 32 to 211, the above code fragment will print "water".

Similar questions