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.
ネストされたループを使用せずに、2 次元配列をナビゲートするにはどうすればよいでしょうか。つまり、ループを 1 つだけ使用します。
String ar[][]=new String [3][4];
ヒントは次のとおりです。
int i = 9; System.out.println(i / 4); // 2 System.out.println(i % 4); // 1