Q:

Rust program to demonstrate the nested for loop

belongs to collection: Rust Looping Programs

0

In this program, we will use a nested for loop to print tables from 2 to 5.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to demonstrate the nested for loop is given below. The given program is compiled and executed successfully.

// Rust program to demonstrate the
// nested for loop

fn main() {
    let mut cnt1:i32 = 0;
    let mut cnt2:i32 = 0;
    
    for cnt1 in 2..6
    {
        for cnt2 in 1..11
        {
            print!("{} ",(cnt1*cnt2));
        }
        println!();
    }
}

Output:

2 4 6 8 10 12 14 16 18 20 
3 6 9 12 15 18 21 24 27 30 
4 8 12 16 20 24 28 32 36 40 
5 10 15 20 25 30 35 40 45 50 

Explanation:

Here, we used a nested for loop to print tables from 2 to 5.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Rust program to demonstrate the break statement wi... >>
<< Rust program to demonstrate the nested while loop...