Please help, I don't know why this java matching game code is not working. image provided below shows what image program show   import javax.swing.*; import java.awt.event.*; import java.awt.*; public class Halloween {     // 2D array to store the Halloween-themed images     final int[][] hallow = {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}, {10, 11, 12}};     final int rows = 4;     int cols = 3;     JButton pics[] = new JButton[rows * cols];     public static void main(String[] args) {         // Create a JFrame with a grid layout         JFrame frame = new JFrame("Halloween");         frame.setLayout(new GridLayout(rows, cols));         // Add buttons to the JFrame         int m = 0;         for (int i = 0; i < rows; i++) {             for (int j = 0; j < cols; j++) {                 pics[m] = new JButton(createImageIcon("back.png"));                 pics[m].addActionListener(new ActionListener() {                     public void actionPerformed(ActionEvent e) {                         // Get the index of the button that was clicked                         int n = Integer.parseInt(e.getActionCommand());                         int x = n % rows;                         int y = n / rows;                         // Set the image of the button to the corresponding Halloween image                         pics[n].setIcon(createImageIcon("hal" + hallow[x][y] + ".png"));                     }                 });                 pics[m].setActionCommand(m + "");                 pics[m].setPreferredSize(new Dimension(128, 128));                 frame.add(pics[m]);                 m++;             }         }         // Set the size of the frame and make it visible         frame.setSize(600, 400);         frame.setVisible(true);     }     // Method to create an ImageIcon from a file     protected static ImageIcon createImageIcon(String path) {         java.net.URL imgURL = Halloween.class.getResource(path);         if (imgURL != null) {             return new ImageIcon(imgURL);         } else {             System.err.println("Couldn't find file: " + path);             return null;         }     } }

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Please help, I don't know why this java matching game code is not working. image provided below shows what image program show

 

import javax.swing.*;
import java.awt.event.*;
import java.awt.*;

public class Halloween {
    // 2D array to store the Halloween-themed images
    final int[][] hallow = {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}, {10, 11, 12}};
    final int rows = 4;
    int cols = 3;
    JButton pics[] = new JButton[rows * cols];

    public static void main(String[] args) {
        // Create a JFrame with a grid layout
        JFrame frame = new JFrame("Halloween");
        frame.setLayout(new GridLayout(rows, cols));

        // Add buttons to the JFrame
        int m = 0;
        for (int i = 0; i < rows; i++) {
            for (int j = 0; j < cols; j++) {
                pics[m] = new JButton(createImageIcon("back.png"));
                pics[m].addActionListener(new ActionListener() {
                    public void actionPerformed(ActionEvent e) {
                        // Get the index of the button that was clicked
                        int n = Integer.parseInt(e.getActionCommand());
                        int x = n % rows;
                        int y = n / rows;
                        // Set the image of the button to the corresponding Halloween image
                        pics[n].setIcon(createImageIcon("hal" + hallow[x][y] + ".png"));
                    }
                });
                pics[m].setActionCommand(m + "");
                pics[m].setPreferredSize(new Dimension(128, 128));
                frame.add(pics[m]);
                m++;
            }
        }

        // Set the size of the frame and make it visible
        frame.setSize(600, 400);
        frame.setVisible(true);
    }

    // Method to create an ImageIcon from a file
    protected static ImageIcon createImageIcon(String path) {
        java.net.URL imgURL = Halloween.class.getResource(path);
        if (imgURL != null) {
            return new ImageIcon(imgURL);
        } else {
            System.err.println("Couldn't find file: " + path);
            return null;
        }
    }
}

Halloween Matching
1. Add the array to make these pictures.
2. Add a reset button. Change its font and color. Its action Command must be "Reset
3. Add a title. Change its font.
back.png hall.png hal2.png hal3.png hal4.png hal5.png hal6.png
Transcribed Image Text:Halloween Matching 1. Add the array to make these pictures. 2. Add a reset button. Change its font and color. Its action Command must be "Reset 3. Add a title. Change its font. back.png hall.png hal2.png hal3.png hal4.png hal5.png hal6.png
Expert Solution
steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Array
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education