/* CheckerboardV2.java ** ** Java application that "draws" a checkerboard whose dimensions are based ** upon three inputs provided by the user. The first input indicates how ** many rows and columns are to be in the board. The second and third ** inputs, respectively, indicate the width and height of each square. ** If the first input is odd, the number of rows and columns on the board ** is one more. ** ** CMPS 134 - Fall 2022 ** Author(s): P.M.J. and < STUDENT's NAME > ** ** Collaborators: ... ** Known Flaws: ... */ import java.util.Scanner; public class CheckerboardV2 { static Scanner keyboard = new Scanner(System.in); static final char FULL_CHAR = '*'; static final char EMPTY_CHAR = '-'; public static void main(String[] args) { System.out.println("Checkerboard Version 2 ..."); System.out.print("Enter size:> "); int size = keyboard.nextInt(); // CODE MISSING HERE!! } // CODE MISSING HERE!! (Namely, more methods.) }