摘要: 从字符串s中解析出一个整数 let mut s = String::new(); io::stdin().read_line(&mut s).unwrap(); let a : i32 = s.trim().parse().unwrap(); // 字符串s解析成i32类型整数a 从字符串s中解析出 阅读全文
posted @ 2020-08-27 12:02 fifolilo 阅读(252) 评论(0) 推荐(0) 编辑