一、For循环
let names = ["Anna", "Alex", "Brian", "Jack"]
for name in names {
print("Hello, \(name)!")
}
for index in 0 ..< names.count {
print("Hello, \(index)!")
}
二、while
while循环从计算单一条件开始。如果条件为true,会重复运一系列语句,直到条件变为false。
while condition
{
statements
}
var index = 10
while index < 20
{
print( "index 的值为 \(index)")
index = index + 1
}
三、repeat-While
while循环的另外 种形式是do-while,它和while的区别是在判断循环 条件之前,先执 次循环的代码块,然后重复循环直到条件为false。
repeat {
statements
} while condition
repeat{
print( "index 的值为 \(index)")
index = index + 1
}while (index<20)
四、if
五、switch
网友评论