Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
public class SquareBoard {
private final int size;
public SquareBoard(int lengthOfEdge) {
this.size = lengthOfEdge;
}
public int getWidth() { return size; }
public int getHeight() { return size; }
}
public class Test {
public static void main(String[] args) {
SquareBoard board = new SquareBoard(4);
System.out.printf("Board is of size %dx%d\n", board.getWidth(), board.getHeight());
}
}