Hello, I have a question related with this problem. I have python code that work
ID: 3724739 • Letter: H
Question
Hello, I have a question related with this problem. I have python code that work. I need the pseudocode. Or you can have a new pseudocode, along with python code as well.
My python code
Print ("Celsius to farehheit conversaiton talbe");
print("CF");
for C in range (0,26):
print (c, "(0:2f)".format(F));
Can anyone help me with pseudocode based on my python I have.
The problem here
Celsius to fahrenheit talbe
"Design a program that displays a table of the Celsius temperatures o through 20 and their Fahrenheit equivalents. The formula for converting a temperature from Celsius to Fahrenheit is F = 9/5 C+32 Where F is the Fahrenheit temperature and C is the Celsius temperature. Your program must use a loop to display the table."
...
Explanation / Answer
print(' Celsius to farehheit conversaiton talbe')
print('CF')
for C <- 0 to 26
BEGIN
// convert Fahrenheit to Celsius
F = 9 * C / 5 + 32;
// print the output in proper format
print (c, "(0:2f)".format(F));
END
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.