Actions
Bug #3608
openDF002_ Compile error
Bug #3608:
DF002_ Compile error
Start date:
10/02/2025
Due date:
% Done:
0%
Estimated time:
Description
Line: 30,32
Description: Create new error matrices because missing "," between rows.
int[][] matrix = {{1, 2, 3, 4} {5, 6, 7, 8} {9, 10, 11, 12}};
int[][] subMatrix = {{6, 7} {10, 11}};
Solution:
int[][] matrix = {{1, 2, 3, 4}, {5, 6, 7, 8}, {9, 10, 11, 12}};
int[][] subMatrix = {{6, 7}, {10, 11}};
No data to display
Actions