Answer:
for degree in range(50, 101):
kelvin = degree + 273.15
print("Centrigrade: {} --> Kelvin: {}".format(degree, kelvin))
Step-by-step explanation:
*The code is in Python.
Create a for loop that iterates from 50 to 100 (Note that the starting value is included, but the ending value is not included in the range method. That is why you need to write range(50, 101) to iterate from 50 to 100)
Convert the centigrade to kelvin using formula (Note that the degree variable represents the each centigrade degree from 50 to 100 and you need to add 273.15 to convert it to Kelvin)
Print the result as in requested format