Skip to content

Instantly share code, notes, and snippets.

@hcyang1012
Created January 8, 2023 15:49
Show Gist options
  • Save hcyang1012/01196e3c2cfdefe12f3aaa96d3fbbb7c to your computer and use it in GitHub Desktop.
Save hcyang1012/01196e3c2cfdefe12f3aaa96d3fbbb7c to your computer and use it in GitHub Desktop.
TRPL/CH02
use rand::Rng;
use std::cmp::Ordering;
use std::io;
fn main() {
println!("Guess the number!");
let secret_number = rand::thread_rng().gen_range(1..=100);
println!("The secret number is: {secret_number}");
loop {
println!("Please input your guess.");
let mut guess = String::new();
io::stdin()
.read_line(&mut guess)
.expect("Failed to read line");
let guess: u32 = match guess.trim().parse() {
Ok(num) => num,
Err(_) => continue,
};
println!("You guessed: {guess}");
match guess.cmp(&secret_number) {
Ordering::Less => println!("Too small!"),
Ordering::Greater => println!("Too big!"),
Ordering::Equal => {
println!("You win");
break;
},
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment