Dateien nach "src" hochladen

This commit is contained in:
robin 2024-04-04 21:30:03 +02:00
parent 735befd227
commit f26c017236

25
src/main.rs Normal file
View file

@ -0,0 +1,25 @@
use std::io;
use rand::Rng;
fn main(){
let mut score:u32 = 0;
loop {
println!("Vor dir sind drei Türen");
println!("Eine von ihnen tötet dich ");
println!("Durch welche gehst du?");
println!("Gib eine Zahl zwischen 1 und 3 ein");
let secretnumber = rand::thread_rng().gen_range(1..=3);
let mut guess = String::new();
let _input= io::stdin()
.read_line(&mut guess);
println!("Der Geist ist hinter der Tür {}", secretnumber);
let guess: u32 = guess.trim().parse().expect("Please type a number!");
if guess == secretnumber {
println!("Dein score: {}", score);
panic!("Du bist tot")
}
else {
println!("Du hast überlebt");
}
let _score = score += 1;
}
}