I need a program that takes the original array and replaces each element of the array with its value times 10 by using a for loop.

So the array is:

VB Code:
  1. Dim decSales(,) = {{1000, 1200, 900, 500, 20000}, {350, 600, 700, 800, 100}}


so decSales(0,0) * 10

would replace the value of decSales(0,0) from 1000 to 10000

Thanks for your help.