Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
配列を合計する方法は、おそらく10x10または2x2または3x3
10x10
2x2
3x3
1 2 3 1 2 3 1 2 3
逆二角形の始点を[1,3]終点から合計したい[3,1]のですが、配列の長さが変わる可能性があることを考慮したいと思います。
[1,3]
[3,1]
このようなことを行う必要があります(配列が呼び出されていると仮定しますx):
x
Dim Sum As Double = 0 For i = 0 To UBound(x, 2) Sum += x(UBound(x, 2) - i, i) Next