普通IF语句
if score<60 Then
cells(8,6)="及格"
Else
cells(8,6)="不及格"
End If
多重if语句
if score>80 then
cells(8,6)="A"
ElseIf score>70 then
cells(8,6)="B"
Else score>60
cells(8,6)="C"
End if
普通IF语句
if score<60 Then
cells(8,6)="及格"
Else
cells(8,6)="不及格"
End If
多重if语句
if score>80 then
cells(8,6)="A"
ElseIf score>70 then
cells(8,6)="B"
Else score>60
cells(8,6)="C"
End if