mirror of https://github.com/KaiserY/trpl-zh-cn
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.1 KiB
56 lines
1.1 KiB
use rand::Rng;
|
|
use std::cmp::Ordering;
|
|
use std::io;
|
|
|
|
// ANCHOR: here
|
|
pub struct Guess {
|
|
value: i32,
|
|
}
|
|
|
|
impl Guess {
|
|
pub fn new(value: i32) -> Guess {
|
|
if value < 1 || value > 100 {
|
|
panic!("Guess value must be between 1 and 100, got {}.", value);
|
|
}
|
|
|
|
Guess { value }
|
|
}
|
|
|
|
pub fn value(&self) -> i32 {
|
|
self.value
|
|
}
|
|
}
|
|
// ANCHOR_END: here
|
|
|
|
fn main() {
|
|
println!("Guess the number!");
|
|
|
|
let secret_number = rand::thread_rng().gen_range(1..=100);
|
|
|
|
loop {
|
|
println!("Please input your guess.");
|
|
|
|
let mut guess = String::new();
|
|
|
|
io::stdin()
|
|
.read_line(&mut guess)
|
|
.expect("Failed to read line");
|
|
|
|
let guess: i32 = match guess.trim().parse() {
|
|
Ok(num) => num,
|
|
Err(_) => continue,
|
|
};
|
|
|
|
let guess = Guess::new(guess);
|
|
|
|
match guess.value().cmp(&secret_number) {
|
|
Ordering::Less => println!("Too small!"),
|
|
Ordering::Greater => println!("Too big!"),
|
|
Ordering::Equal => {
|
|
println!("You win!");
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|