官术网_书友最值得收藏!

while loops

Swift provides while and repeat-while loops. A while or repeat-while loop performs a set of expressions until a condition becomes false. Consider the following example:

var n = 2 
while n < 100 {
n = n * 2
}
var m = 2
repeat {
m = m * 2
} while m < 100

The while loop evaluates its condition at the beginning of each iteration. The repeat-while loop evaluates its condition at the end of each iteration.

主站蜘蛛池模板: 分宜县| 泽州县| 冀州市| 河北区| 新龙县| 固镇县| 太康县| 祥云县| 荣昌县| 罗田县| 海丰县| 漳平市| 厦门市| 旌德县| 政和县| 大名县| 泸定县| 福建省| 格尔木市| 普定县| 黄浦区| 周至县| 浦东新区| 关岭| 涟水县| 合阳县| 留坝县| 台湾省| 宣城市| 镇巴县| 绵阳市| 清水县| 平舆县| 临泉县| 吕梁市| 北川| 雅江县| 东丰县| 工布江达县| 木里| 乌拉特后旗|