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

Here, we are going to demonstrate the 'for in' loop with stride() function in Swift programming language.
Last Updated : June 07, 2021

Problem Solution

Here, we will use the stride() function with the 'for in loop' to print the table of 5 on the console screen.

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 from, to, 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.

Swift Looping Programs »



Advertisement
Advertisement


Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

Copyright © 2025 www.includehelp.com. All rights reserved.