fn main() { println!("九九乘法表!"); for i in 1..10{ for j in 1..i+1{ print!("{}*{}={} ",j,i,i*j) }println!() }}