Алгоритмическое мышление при решении задач (на примере языка C#). Шамшев А.Б - 72 стр.

UptoLike

Составители: 

72
if (columns[i].needZiro(i)) {
columns[i].makeZiro();
}
}
}
public void print() {
for (int i = 0; i < columns.Length; i++) {
printLine(i);
}
Console.WriteLine();
}
}
}