Exercise 5 · Chapter: Linear ProgramsRequired+50 XP
Temperature Converter
Convert 25 degrees Celsius to Fahrenheit using the formula:
F = C × 9/5 + 32
Your output should be:
77
Need a hint?
3 available · costs 5 XP each
javascript
let celsius = 25;
// Convert to fahrenheit and print the result
Output
Run your code to see the output here.