公司要求新項目用Swift 所以接下來基本文章大部分以Swift為主
要想盡快掌握Swift 一句話孰能生巧 手寫 代碼敲 筆記寫
Swift中的While
var a = 2
while (a < 100)
{
}
簡化寫法
while a < 100
{
}
Swift中的do While
var a = 2
repeat
{
}while (a < 100)
repeat
{
}while a < 100
要想盡快掌握Swift 一句話孰能生巧 手寫 代碼敲 筆記寫
var a = 2
while (a < 100)
{
}
簡化寫法
while a < 100
{
}
var a = 2
repeat
{
}while (a < 100)
repeat
{
}while a < 100