(Color[][] screen)
| 23 | } |
| 24 | |
| 25 | public static void PrintScreen(Color[][] screen) { |
| 26 | for (int i = 0; i < screen.length; i++) { |
| 27 | for (int j = 0; j < screen[0].length; j++) { |
| 28 | System.out.print(PrintColor(screen[i][j])); |
| 29 | } |
| 30 | System.out.println(); |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | public static int randomInt(int n) { |
| 35 | return (int) (Math.random() * n); |
no test coverage detected