简体   繁体   中英

do while loop in Swift

如何在 Swift 中编写 do-while 循环?

Here's the general form of a repeat-while loop for Swift

repeat {
    statements
} while condition

For example,

repeat {
    //take input from standard IO into variable n
} while n >= 0;

This loop will repeat for all positive values of n.

repeat-while loop, performs a single pass through the loop block first before considering the loop's condition (exactly what do-while loop does).

var i = Int()
repeat {
//below line was fixed to say print("\(i) * \(i) = \(i * i)")
   print("\(i) * \(i) = \(i * i)")
    i += 1

} while i <= 10

repeat-while loop, performs a single pass through the loop block first before considering the loop's condition (exactly what do-while loop does).

Code snippet below is a general form of a repeat-while loop,

repeat {
  // your logic
} while [condition]

swift's repeat-while loop is similar to a do-while loop in other language . The repeat-while loop is a alternate while loop.It first makes a single pass through the loop block ,then considers the loop condition and repeats the loop till the condition shows as false.

repeat 
{
x--
}while x > 0

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM