[파워자바] 15장 프로그래밍 솔루션 답지
1. import javax.swing.*; import java.awt.event.*; import java.awt.*; class MyPanel extends JPanel { Font f1, f2, f3, f4, f5; public MyPanel() { f1 = new Font("Serif", Font.PLAIN, 20); f2 = new Font("San Serif", Font.BOLD, 20); f3 = new Font("Monospaced", Font.ITALIC, 20); f4 = new Font("Dialog", Font.BOLD | Font.ITALIC, 20); f5 = new Font("DialogInput", Font.BOLD, 20); } public void paintCompone..
2023. 2. 16.