/*

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("优秀")

}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("优秀")

}


// 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)