I'm learning Rust, but when I print a decimal number, only the integer part is printed, not the decimal part: fn main(){ println!("{:.3}", 22/7); } // This ...
確定! 回上一頁