Skip to content

Instantly share code, notes, and snippets.

View cuongnguyen0527's full-sized avatar
🏖️
working with company account

cuongdn cuongnguyen0527

🏖️
working with company account
  • Vietnam
View GitHub Profile
@cuongnguyen0527
cuongnguyen0527 / convert_between_farenheit_and_celcius.rs
Created June 12, 2020 07:15
First program written in Rust to convert degree between Farenheit (F) and Celcius (C)
use std::io;
fn main() {
println!("Please choose mode:");
println!("1> C degree to F degree ");
println!("2> F degree to C degree ");
let mut mode = String::new();
loop {