-
Rust연습❤️물어보고 출력 무한 loop코딩Coding/Rust연습 2022. 8. 14. 00:02728x90
use std::io::{self, Write}; fn main() { let mut stdin = io::stdin(); let input = &mut String::new(); loop { input.clear(); print!("Your age: "); io::stdout().flush(); stdin.read_line(input); print!("{}", input); } }
warning: `char` (bin "char") generated 3 warnings Finished dev [unoptimized + debuginfo] target(s) in 0.16s Running `target/debug/char` Your age: 324 324 Your age: 11 11 Your age: q q Your age: 20 20 Your age: 2- 2- Your age: 1 1 Your age: 2 2 Your age: 3 3 Your age: Your age: ^C
https://stackoverflow.com/questions/39154107/how-to-avoid-going-to-new-line-with-stdin-in-rust
반응형'코딩Coding > Rust연습' 카테고리의 다른 글
Rust☆연습_Traits_part2 (0) 2022.09.11 Rust☆연습(Traits)_part1 (0) 2022.09.11 러스트연습숫자가 0부터 계속 올라감 계속 그 자리에서 출력 (0) 2022.08.14 Rust연습_H가 같은줄에 출력에서 앞으로 계속 쌓임. (0) 2022.08.14 Rust Machine learning code 불완전함 (0) 2022.08.13 러스트연습❤️ 뭔가 제자리에서 출력되는거 (0) 2022.08.13 Rust연습❤️“rust spinning rod animation in text” Code Answer (0) 2022.08.13 Rust연습❤️Processing 0~100%올라가는 프린트 ㅎㅎ (0) 2022.08.13