A simple program written in Rust to convert Celsius values to Fahrenheit.
Description
The program takes a Celsius value from the terminal and outputs the equivalent value in Fahrenheit.
How to run program
- Clone this repository
- Change directory to project directory
cd celcius-to-fahreinheit
- Run the program
cargo build
Pseudocode
- Start
- Capture Celsius
celsius_value
input from terminal - Calculate Fahrenheit using the formula
°F = (°C × 9/5) + 32
fahreinheit_value = (celsius_value * 9/5) + 32
- Display Fahrenheit value