Олимпиадный тренинг

Задача . 37458


Задача

Темы:
Which of the following initializes an 8 × 10 matrix with integer values that are perfect squares? (0 is a perfect square.)
I
int[][] mat = new int[8][10];

II
int[][] mat = new int[8][10];
for (int r = 0; r < mat.Length; r++)
    for (int c = 0; c < mat[r].Length; c++)
        mat[r][c] = r * r;

III
int[][] mat = new int[8][10];
for (int c = 0; c < mat[r].Length; c++)
    for (int r = 0; r < mat.Length; r++)
        mat[r][c] = c * c;

(A) I only
(B) II only
(C) III only
(D) I and II only
(E) I, II, and III

time 1000 ms
memory 32 Mb
Правила оформления программ и список ошибок при автоматической проверке задач

Статистика успешных решений по компиляторам
Комментарий учителя