Our playing field is kind of small, don't you think? It should be 9x9 cells:
1) There is a setScreenSize(int, int) method to set the size of the field
2) This method takes width and height arguments (the number of cells wide and high)
3) the dimensions of the field will be used frequently, so it's
Minesweeper (Part 2/16)
- 3
Locked
Comments (16)
- Popular
- New
- Old
You must be signed in to leave a comment
Hoist
27 February, 20:49
See notes on superclass and subclass extends --
![]()

0
sachin
24 January 2022, 16:44
I am confused on
why line 1 below is having starting with the keyword "Package" whereas line 2 with "Import"
package com.codegym.games.minesweeper;
import com.codegym.engine.cell.*;
I came back on this after a while so not able to connect the dots. Kindly help.
0
Gyepi
7 November 2022, 18:08
package it is your worksapce where you class is !!
import we use extra class they provided
0
Manoj
29 January, 14:53
Package is your program's directory structure and where as Import is used to import the inherited Game class predefined methods.
0
shining Student
22 November 2021, 16:12
I don't understand how to do this question and why the answer is like. Who can explain it to me.
0
TomekExpert
23 November 2021, 13:29
You have to declare variable which got the dimensions of field:
You have to create a method which is responsible for initializing the field. Inside this method you are calling to the method setScreenSize
And you have to create method setScreenSize which is responsible for calling another, inherited method setScreenSize, and you bring x and y to inherited method setScreenSize;
+2
miguel
9 April 2021, 18:06
Hey everybody... I don't know if I missed something... but I didn't study inherit or something like that so far in the material... So, are we going to study that in a after lesson? Or where can I find that lesson?
0
Kasia
18 October 2020, 09:51
The IDE doesn't import the engine(import com.codegym.engine.cell.*;)A nybody knows why? (It works perfect on codygym's website ).
+1
Roman
2 November 2020, 06:45
Please post your question with the attached solution in the section Help.
+1
null
8 March 2021, 11:10
Congratulations on level 41.
+1
Marta
4 May 2020, 15:19
There's an error: cannot find symbol method setScreenSize(int, int), what's the problem?
0
Sarah Beth Benes
17 June 2020, 18:58
It should say setScreenSize (SIDE, SIDE);
The SIDE is the int variable,.
+3
Ailin
22 January 2020, 08:41
It doesn't accept
in
0
Brad Reed
10 July 2020, 18:14
it requires the American spelling: initialize
+2
null
13 December 2019, 13:40
comment resolou cette exo svp
0
zendro
15 July 2019, 17:55
super.setScreenSize(SIDE,SIDE); should be correct too, but it doesn't accept it...
0