belongs to collection: Swift Looping Programs
Here, we will demonstrate a nested 'for in' loop with a specified range and print result on the console screen.
Program/Source Code:
The source code to demonstrate the nested 'for in' loop is given below. The given program is compiled and executed successfully.
// Swift program to demonstrate the // nested "for in" loop import Swift; for cnt1 in 1...3 { for cnt2 in 1...cnt1{ print(cnt1) } }
Output:
1 2 2 3 3 3 ...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 nested 'for in' loop with specified range and printed numbers on the console screen.
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Program/Source Code:
The source code to demonstrate the nested 'for in' loop 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 nested 'for in' loop with specified range and printed numbers on the console screen.
need an explanation for this answer? contact us directly to get an explanation for this answer