To Draw Various Shapes Using Applet In Java Program

  1. import java.awt.*;    
  2. import java.applet.*;    
  3.     
  4. public class shap extends Applet    
  5.  {    
  6.    public void  paint(Graphics g)    
  7.    {    
  8.       g.drawLine(25,25,100,25);    
  9.     
  10.       g.drawRect(25,40,100,50);    
  11.     
  12.       g.fillRect(145,40,100,50);    
  13.     
  14.       g.drawRect(265,40,50,50);    
  15.     
  16.       g.drawRoundRect(25,125,100,50,15,15);    
  17.     
  18.       g.fillRoundRect(145,125,100,50,15,15);    
  19.     
  20.       g.drawOval(25,205,100,50);    
  21.     
  22.       g.fillOval(145,205,100,50);    
  23.     
  24.       g.drawOval(265,205,50,50);    
  25.     
  26.       g.draw3DRect(25,280,100,50,true);    
  27.     
  28.       g.draw3DRect(145,280,100,50,false);    
  29.     
  30.       g.drawArc(25,345,100,50,25,75);    
  31.     
  32.       g.drawArc(145,345,100,50,125,75);    
  33.    }    
  34.  }    
  35.     
  36. /* <applet code = "shap.class" height = 500 width =500>  
  37.    </applet> */