So have this whole program that I need to do. What's required is that I draw a die using the user's input of die and location. Then show it. I have a main client "RollTheDie "
Code:
import javax.swing.JFrame;

import java.awt.Color;
import java.util.Scanner;

public class RollTheDie
{
	public static void main(String[] args)
	{
		final int WINDOW_HEIGHT = 350;
		final
...