0x02 - Guessing Game
Setup dự án Dùng cargo để setup dự án mới cargo new guessing_game cd guessing_game Nhận input Chỉnh sửa file src/main.rs như dưới đây. use std::io; fn main() { println!("Welcome to Guessing Game"); println!("Enter your guess: "); let mut guess = String::new(); io::stdin.read_line(&mut guess) .expect("Error reading stdin"); println!("You guessed {}", guess); } Dòng đầu tiên, use std::io sẽ có tác dụng tương tự với việc import một thư viện vào dự án. Với std::io, chương trình sẽ có thể nhận được input. ...