Project

General

Profile

Actions

Bug #3608

open

DF002_ Compile error

Bug #3608: DF002_ Compile error

Added by Tiến Hưng Nguyễn about 1 month ago.

Status:
New
Priority:
Normal
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

Also available in: PDF Atom