Exerpad
🔥 0
0 XP
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

Hint: Use integer math (no decimals needed).

rust
fn main() {
}
Output
Run your code to see the output here.