28 lines
965 B
Python
Executable File
28 lines
965 B
Python
Executable File
# This program should find the phase of a fictional substance
|
|
# for given temperature and pressure conditions, but it has several bugs.
|
|
#
|
|
# a) Try to run the program with Python3 and see what happens.
|
|
# There's a syntax error near the end. Fix it.
|
|
# b) Try again. It'll crash with a runtime error. Find the cause and fix it.
|
|
# c) There is also a semantic error: for T=300 and P=100,
|
|
# the phase should be SOLID.
|
|
# Fix it to agree with the phase diagram. Test in several conditions.
|
|
# d) Adjust the format string to output the temperature with 1 decimal place
|
|
# and the pressure with 3.
|
|
|
|
print("Kryptonite phase classifier")
|
|
# Input.
|
|
T = float(input("Temperature (K)? "))
|
|
P = float(input("Pressure (kPa)? "))
|
|
|
|
# Determine the phase.
|
|
if (T > 400) and (P > 50):
|
|
phase = "LIQUID"
|
|
elif P > 0.125 * T:
|
|
phase = "SOLID"
|
|
else:
|
|
phase = "GAS"
|
|
|
|
# Output.
|
|
print("At {:.1f} K and {:.3f} kPa, Kryptonite is in the {} phase.\n\n".format(T, P, phase))
|