/* CheckerboardV1.java ** ** Java application that "draws" a checkerboard of a size based upon the ** input provided by the user. The single input value dictates not only ** the number of rows and columns in the board, but also the size (i.e., ** width and height) of each square. If the input is odd, the number of ** rows and columns on the board is one more. ** ** CMPS 134 - Fall 2022 ** Author(s): P.M.J. ** ** Collaborators: ... ** Known Flaws: ... ** */ import java.util.Scanner; public class CheckerboardV1 { 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 1 ..."); System.out.print("Enter size:> "); int size = keyboard.nextInt(); // CODE MISSING HERE!! } // CODE MISSING HERE!! (Namely, more methods.) }