Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,895 questions

51,826 answers

573 users

How to calculate and print the Pascal triangle in Rust

1 Answer

0 votes
fn main() {
    let n = 6;

    for i in 0..n {
        let mut number = 1;

        for _ in 0..(n - i) * 2 {
            print!(" ");
        }

        for j in 0..=i {
            print!("{:4}", number);
            number = number * (i - j) / (j + 1);
        }
        println!();
    }
}


  
/*
run:

               1
             1   1
           1   2   1
         1   3   3   1
       1   4   6   4   1
     1   5  10  10   5   1

*/

 



answered Sep 26, 2024 by avibootz
...