Q:

Swift program to demonstrate the \'for in\' loop with stride() function

belongs to collection: Swift Looping Programs

0

Here, we will use the stride() function with the 'for in loop' to print the table of 5 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 stride() function is given below. The given program is compiled and executed successfully.

// Swift program to demonstrate the "for in" loop 
// with stride() function

import Swift;

// print table of 5 using stride() function.
for cnt in stride(from: 5, to: 55, by: 5) {
    print(cnt);
}

Output:

5
10
15
20
25
30
35
40
45
50

...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 stride() function to increase some fixed value in each iteration without using the range. And, we printed a table of 5. The stride() function uses three parameters fromto, and by.

In the stride() function, we started the loop from 5 till 55 and incremented the value by 5. But here 55 is not included.

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

total answers (1)

Swift program to demonstrate the nested \'for... >>
<< Swift program to demonstrate the \'for in\�...