rust multiplication table for a number code example
Example: rust multiplication table for a number
// create multiplication table for a number
fn multiplication(n: u64) -> String {
(1..=12).map(|i| format!("{} * {} = {}", i, n, i * n)).collect::<Vec<_>>().join("\n")
}
fn main() {
println!("{}", multiplication(7));
}