溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

06.swift.if和三目語句基本使用

發(fā)布時間:2020-04-10 13:55:05 來源:網(wǎng)絡(luò) 閱讀:808 作者:光光ing 欄目:移動開發(fā)


/*

Swift: if語句基本使用


if 條件表達式 {指令}   if 條件表達式 {指令} else{指令}

0.if后的圓括號可以省略

1.只能以bool作為條件語句

2.如果只有條指令if后面的大括號不可以省略

*/

var age1:Int

var age2:Int

var max:Int

max = age2;

if age1 > age2

{

    max = age1

}

print(max)


if age1 > age2

{

    max = age1;

}else

{

    max = age2;

}

print(max)



var score = 99.9;

if score >= 90

{

    print("優(yōu)秀")

}else if score >= 60

{

    print("良好")

}else

{

    print("不給力")

}

// 1.if的使用

// 1> if后面的()可以省略

// 2> 判斷句不再有非0即真.必須有明確的Bool:true/false

let a = 10


if a != 0 {

    print("a不等于0")

} else {

    print("a等于0")

}


// 2.if elseif的使用

let score = 88


if score < 0 || score > 100 {

    print("沒有意義的分?jǐn)?shù)")

} else if score < 60 {

    print("不及格")

} else if score < 80 {

    print("及格")

} else if score < 90 {

    print("良好")

} else if score <= 100 {

    print("優(yōu)秀")

}


// 3.三目運算符

let m = 40

let n = 30


var result = 0


//if m > n {

//    result = m

//} else {

//    result = n

//}


result = m > n ? m : n


print(result)




向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI