Q:

Swift program to demonstrate the nested \'for in\' loop

belongs to collection: Swift Looping Programs

0

Here, we will demonstrate a nested 'for in' loop with a specified range and print result on the console screen.

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 in' loop is given below. The given program is compiled and executed successfully.

// Swift program to demonstrate the 
// nested "for in" loop

import Swift;

for cnt1 in 1...3 {
    for cnt2 in 1...cnt1{
        print(cnt1)
    }
}

Output:

1
2
2
3
3
3

...Program finished with exit code 0
Press ENTER to exit console.

Explanation:

In the above program, we imported a package Swift to use the print() function using the below statement,

import Swift;

Here, we used nested 'for in' loop with specified range and printed numbers on the console screen.

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

total answers (1)

Swift program to demonstrate the infinite while lo... >>
<< Swift program to demonstrate the \'for in\�...