Write a pseudocode that converts 50 Celsius degrees into its equivalent Fahrenheit degrees. Use the formula: F= 9/5*C + 32
The algorithm (in Python) may look like this:
t=input("Enter temperature in Celsius: ")
p=((c+9/5)+32)
print("This temperature in Fahrenheit is "value(p)" °F.")
Comments
Leave a comment