我正在 Windows 窗体 Visual Basic 中运行一个程序,我试图制作多个计数器
这是我的代码:
If txtAnswer.Text = nMathSum Then
nCount = nCount + 1
lblCorrect.Text = nCount
ElseIf txtAnswer.Text <> nMathSum Then
nIount = nIount + 1
lblIncorrect.Text = nIount
End If
If txtAnswer.Text = nMathDiff Then
nCount = nCount + 1
lblCorrect.Text = nCount
ElseIf txtAnswer.Text <> nMathDiff Then
nIcount = nIcount + 1
lblIncorrect.Text = nIout
End If
它假设计算我正确和错误回答的次数
总和计数器工作正常,但差值计数器有问题。当我输入正确答案时,它会转到不正确的标签。