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.
我有两个不同的数组,如下所示:
i=[98,99,100] j=[25,69,30]
我想通过双循环来旋转这个值,但在每次迭代期间使用相同的组件索引。
例如,首先是 98-25,然后是 99-69,最后是 100-30。然后每个组合都应该写在不同的文件中。
感谢您的任何建议,
最好的。
你的意思是这样的吗?
do ix = 1,3 do jx = i(ix),j(ix),-1 ... stuff end do end do
如果那不是你想要的,那是因为你没有更清楚地解释你想要什么。