JavaRush icon indicating copy to clipboard operation
JavaRush copied to clipboard

Wrong method print()

Open Verzeragna opened this issue 6 years ago • 0 comments

Hello! New validator in JavaRush doesn't accept method print() in class Canvas (javarush/test/level24/lesson14/big01). Now new working methot looks like this: public void print() { for (int i = 0; i < getHeight() + 2; i++) { for (int j = 0; j < getWidth() + 2; j++) { System.out.print(matrix[i][j]); } System.out.println(); } System.out.println(); System.out.println(); }

Verzeragna avatar Oct 08 '19 12:10 Verzeragna