Rust. use std::io::BufRead;. let n: i32 = std::io::stdin() .lock() .lines() .next() .expect("stdin should be available") .expect("couldn't read from stdin") ...
確定! 回上一頁