Swift For Loop Inside A While Loop

[Solved] Swift For Loop Inside A While Loop | Swift - Code Explorer | yomemimo.com
Question : while loop in swift

Answered by : muhammad-zeeshan-vdbiet6jzy1z

var counter = 0
while true { print("Counter is now \(counter)") counter += 1 if counter == 556 { break }
}

Source : https://www.hackingwithswift.com/read/0/9/loops | Last Update : Thu, 03 Mar 22

Question : Swift while Loop

Answered by : samer-saeid

while (condition){ // body of loop
}

Source : | Last Update : Wed, 22 Jun 22

Question : while Loop Swift

Answered by : samer-saeid

// program to display numbers from 1 to 5
// initialize the variable
var i = 1, n = 5
// while loop from i = 1 to 5
while (i <= n) { print(i) i = i + 1
}

Source : | Last Update : Wed, 22 Jun 22

Question : Swift for Loop inside a while Loop

Answered by : samer-saeid

// program to display 7 days of 2 weeks
var weeks = 2
var i = 1
// outer while loop
while (i <= weeks){ print("Week: \(i)") // inner for loop for day in 1...7{ print(" Day: \(day)") } i = i + 1
}

Source : | Last Update : Wed, 22 Jun 22

Answers related to swift for loop inside a while loop

Code Explorer Popular Question For Swift