所以即时尝试使用if,else和if if来决定玩家是否组建团队。例如,他们必须等于74英寸或更大并且等于210磅或更大才能成为团队。
继续踢球者我可以说它们是"制造团队"同时具有身高和体重。我可以说#34;你没有让团队成为"当你输入重量低于210磅。然而,如果重量保持在210并且高度输入错误,它仍然会说他成为了球队。
我想知道我做错了什么?我似乎无法弄清楚要把正确的" if"和"否则"谁能向我解释我做错了什么?
Read(_name, Height, Weight)
If (Height >= 74) Then
If (Weight >= 210) Then
Print("Welcome New Pats Player!")
Else : Print("You did not make the team")
End If
End If
Write(Height)
Write(Weight)
Write(_name)
Print()
Print("By Chuck")
答案 0 :(得分:1)
我不了解vb.net,但您可能想尝试:
If (Height >= 74 And Weight >=210) Then
Print("Welcome New Pats Player!")
Else : Print("You did not make the team")
End If
答案 1 :(得分:0)
这个怎么样?添加另一个Else Clause
If (Height >= 74) Then
If (Weight >= 210) Then
Print("Welcome New Pats Player!")
Else : Print("You did not make the team")
End If
Else : Print("You did not make the team")
End If