Q:

Swift program to demonstrate the \'for in\' loop with range

belongs to collection: Swift Looping Programs

0

Here, we will use the "for in" loop with a range to print numbers from 10 to 15 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 'for in' loop with range is given below. The given program is compiled and executed successfully.

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

import Swift;

// Print number from 10 to 15
for cnt in 10...15 {
    print(cnt)
}

Output:

10
11
12
13
14
15

...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 the for in loop to print numbers from 10 to 15 on the console screen. In the for in loop cnt variable initialized with 10 and loop will execute till the value of "cnt" is 15.

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

total answers (1)

Swift program to access the value of an array usin... >>