checkerboard
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
checkerboard [2024/10/29 13:11] – created frchris | checkerboard [2024/10/29 13:15] (current) – frchris | ||
---|---|---|---|
Line 1: | Line 1: | ||
**Checker Board** | **Checker Board** | ||
+ | Make a checkerboard | ||
+ | |||
+ | |||
+ | Write a graphical application that displays a checkerboard with 64 squares, alternating white and black. | ||
+ | |||
+ | Use nested loops. | ||
Line 35: | Line 41: | ||
| | ||
| | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | <code java CheckerBoardComponent.java> | ||
+ | import javax.swing.JComponent; | ||
+ | import java.awt.Graphics; | ||
+ | import java.awt.Graphics2D; | ||
+ | |||
+ | public class CheckerBoardComponent extends JComponent | ||
+ | { | ||
+ | | ||
+ | { | ||
+ | Graphics2D g2 = (Graphics2D) g; | ||
+ | |||
+ | final int NSQUARES = 8; | ||
+ | |||
+ | int size = Math.min(getWidth(), | ||
+ | CheckerBoard cb = new CheckerBoard(NSQUARES, | ||
+ | |||
+ | cb.draw(g2); | ||
+ | } | ||
+ | } | ||
+ | |||
+ | </ | ||
+ | |||
+ | |||
+ | <code java CheckerBoardViewer.java> | ||
+ | import javax.swing.JFrame; | ||
+ | |||
+ | /** | ||
+ | This program displays a checkerboard. | ||
+ | */ | ||
+ | public class CheckerBoardViewer | ||
+ | { | ||
+ | | ||
+ | { | ||
+ | JFrame frame = new JFrame(); | ||
+ | |||
+ | final int FRAME_WIDTH = 330; | ||
+ | final int FRAME_HEIGHT = 360; | ||
+ | |||
+ | frame.setSize(FRAME_WIDTH, | ||
+ | frame.setTitle(" | ||
+ | frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); | ||
+ | |||
+ | CheckerBoardComponent component = new CheckerBoardComponent(); | ||
+ | frame.add(component); | ||
+ | |||
+ | frame.setVisible(true); | ||
+ | } | ||
} | } | ||
</ | </ |
checkerboard.1730221864.txt.gz · Last modified: 2024/10/29 13:11 by frchris