/*
從策劃到設計制作,每一步都追求做到細膩,制作可持續(xù)發(fā)展的企業(yè)網站。為客戶提供成都網站建設、網站建設、網站策劃、網頁設計、域名與空間、虛擬主機、網絡營銷、VI設計、 網站改版、漏洞修補等服務。為客戶提供更好的一站式互聯(lián)網解決方案,以客戶的口碑塑造優(yōu)易品牌,攜手廣大客戶,共同發(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("沒有意義的分數")
} 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)