Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Java - please help me to fix my code and with explain Create a GUI called NumbersGUI (by extending JFrame as shown in lecture). The

Java - please help me to fix my code and with explain

Create a GUI called NumbersGUI (by extending JFrame as shown in lecture). The NumbersGUI should have a GridLayout of three rows and three columns. For the numbers 1 to 100, fill the numbers into the cells of the GridLayout so that the first cell (top left or cell [1,1]) contains those numbers that are evenly divisible by 2. Cell [1,2] those that are evenly divisible by 3, cell [1,3] those that are evenly divisible by 4, cell [2,1] those that are evenly divisible by 5 and so forth. Obviously, one number may appear in more than one cell. For example, here are the cells filled in with the numbers 1 to 10:

image text in transcribed

Project 1.java

public class Project 1 { public static void main(String[] args) { NumbersGUI Numbers = new NumbersGUI(); Numbers.printNumberstoNumbersGUI(Number); } }

NumbersGUI.java

import java.awt.GridLayout; import java.awt.TextArea; import javax.swing.*;

public class NumbersGUI extends JFrame { public NumbersGUI() { setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); setLayout(new GridLayout(3, 3)); setSize(200, 200);

public static void printNumberstoNumbersGUI (NumbersGUI Num) { for (int i = 2; i

for (int j = 1; j 4 3 6 9 2 4 6 8 10 5 10 6 7 8 9 10

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Focus On Geodatabases In ArcGIS Pro

Authors: David W. Allen

1st Edition

1589484452, 978-1589484450

More Books

Students also viewed these Databases questions

Question

Describe the surface. x + y = 7, with |z| 7

Answered: 1 week ago

Question

What does Processing of an OLAP Cube accomplish?

Answered: 1 week ago