-
Rust연습_추리 게임 튜토리얼코딩Coding/Rust연습 2021. 5. 9. 01:02728x90
use std::io; fn main() { println!("Guess the number!"); println!("Please input your guess."); let mut guess = String::new(); io::stdin() .read_line(&mut guess) .expect("Failed to read line"); println!("You guessed: {}", guess); }
결과
추리 게임 튜토리얼 - The Rust Programming Language (rinthel.github.io)
반응형'코딩Coding > Rust연습' 카테고리의 다른 글
Rust연습_Fibonacci피보나치 출력 (0) 2021.05.13 Rust연습_피보나치 수열 출력하기 (0) 2021.05.13 Rust연습_Create a Calculator App러스트로 계산기 만들기-Engineer man (0) 2021.05.11 Rust연습 - 구조체 및 열거형을 사용하여 코드 수정(exercise-structs-enums) (0) 2021.05.11 Rust연습_Booleans-bool 형식 (0) 2021.05.08 Rust연습_문자 및 문자열출력Character and strings (0) 2021.05.08 Rust연습_ The default type is f64. On modern CPUs, the f64 type is roughly the same speed as the f32 type, but it has more precision. (0) 2021.05.08 Rust연습_문자열을 숫자로 변환해야 하고 .parse() 메서드를 사용 (0) 2021.05.08