Write a For...Next loop that adds the odd numbers 1 through 49 and assigns their sums to the variable intSum. The program should start with the lines below (use the following variables in your code).
Dim intLoopValue As Integer
Dim intStartValue As Integer
Dim intEndValue As Integer
Dim intSum as Integer
intSumValue = 1
intEndValue = 49
intSum = 0