Skip to content

Instantly share code, notes, and snippets.

@AshishKapoor
Last active April 24, 2023 09:07
Show Gist options
  • Save AshishKapoor/9a359788f4dbaedec8871a40ec38ef53 to your computer and use it in GitHub Desktop.
Save AshishKapoor/9a359788f4dbaedec8871a40ec38ef53 to your computer and use it in GitHub Desktop.
Guessing Game in Rust
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);
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(_) => {
println!("Please enter a number only!");
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;
}
}
}
}
@AshishKapoor
Copy link
Author

Cargo.toml

[package]
name = "guessing_game"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
rand = "0.8.5"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment