this may seem stupid, but i wanted to understand a few equations ive incountered.
given these declarations of a two dimensional integer
Dim table As Integer(,) = New Integer(2,4)
{{2,3,5,4,0},{4,3,1,2,6},{1,3,0,5,2}}
Dim intA as integer = 1
Dim intB as integer = 4
figure out the value of int x:
int x= table(intB,intA)
int x = table(2*intA, intB-intA)
intx = table(2, table(intA +1,intB - 1))
intx = table(intA,table(intA,intA))
intx = table(table.getupperbound(0),table.getupperbound(1))
im just trying to figure out how to solve this equation. Thanks.
PS- no this isnt a joke, im curious. thanks.