I tried to write this code out, I dont want the answer I just want someone to explain to me what I am missing and doing wrong.
Suppose the population of a certain country was 125,000 at the beginning of the year 1995. The population is growing at a rate of 4.3% per year. Write a program that determines in what year the population will reach or exceed 200,000.
Private Sub btnDisplay_Click(...)Handles_
btnDisplay.Click
Dim number As Integer
Dim count As Integer
number = 125000
count = 12 months
Do
number = number * 4.3
count = count + 1
Loop Until count = 200000
lstOutput.Items.Add(number)
End Sub