The following code totals the values in two Integer arrays: intNumberArray 1 and intNumberArray2. Both, arrays have 25 elements. Will the code print ilu . oireel sum of values for both arrays? Why or why not?
Dim intTotal As Integer = 0 ' AccumulatorFor intCount = 0 To 24intTotal += intNumberArray1(intCount)NextMessageBox.Show("Total for intNumberArray1 is "intTotal.ToString())For intCount = 0 To 24intTotal += intNumberArray2(intCount)NextMessageBox.Show("Total for intNumberArray2 is "intTotal.ToString())
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.