import java.awt.*; import java.applet.Applet; import java.awt.event.*; public class Pudel extends Applet{ public void paint(Graphics g){ g.setColor(Color.black); g.drawRect(80, 100, 60, 90); g.drawLine(125, 70, 140, 100); g.drawLine(95, 70, 80, 100); g.drawLine(80, 100, 90, 100); g.drawRect(95, 60, 30, 10); g.setColor(Color.white); g.drawLine(80, 100, 140, 100); } public static void main(String[] argumendid){ Frame f=new Frame(); f.add(new Pudel()); f.setSize(400,500); f.setVisible(true); } }