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.
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.
Output:
Explanation:
In the above program, we imported a package Swift to use the print() function using the below statement,
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.
need an explanation for this answer? contact us directly to get an explanation for this answer