Home »
Swift »
Swift Programs
Swift program to demonstrate the 'for in' loop with range
Here, we are going to demonstrate the 'for in' loop with range in Swift programming language.
Last Updated : June 07, 2021
Problem Solution
Here, we will use the "for in" loop with a range to print numbers from 10 to 15 on the console screen.
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.
Swift Looping Programs »
Advertisement
Advertisement