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.
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.
Output:
Explanation:
In the above program, we imported a package Swift to use the print() function using the below statement,
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