こんにちは私はvb.netでプログラムを作成して、入力ボックスの値に1つの変数のみを使用して数の平均を見つけようとしていますが、カウント数の2番目は負である必要がありますが、正確な答えを得ることができませんここにコードがあります
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim num, count As Integer
num = InputBox("Please enter number") 'for first entry
While num > 0 ' here we have to check it that the num is not negative then to start
num = InputBox("Please enter number")
num += num
count += 1 'this will calculate how many times number added
End While
MsgBox("Average is " & num / count)
End Sub