-1
我一直在工作我的方式在周圍迅速一場比賽,只是想創建這樣一句話:聲明一個空語句在迅速
if (player1!=null)||(player2!=null)
println("You are out of the game")
我已經聲明的變量爲player1
和player2
,但我該怎麼辦去這個嗎?
我一直在工作我的方式在周圍迅速一場比賽,只是想創建這樣一句話:聲明一個空語句在迅速
if (player1!=null)||(player2!=null)
println("You are out of the game")
我已經聲明的變量爲player1
和player2
,但我該怎麼辦去這個嗎?
寫在斯威夫特,而不是C:
if player1 != nil || player2 != nil {
println("You are out of the game")
}