/*Applet program hello3.java
This is a Java applet which produces the same
output as the application named hello1.java,
except this program runs under a browser or 
the Applet Viewer.
*/

import java.applet.Applet;
import java.awt.Graphics;

public class hello3 extends Applet {
  //override the paint method
  public void paint(Graphics screen) {
    screen.drawString("Hello World",50,75);
  }
} //End hello3 class. 
//End applet
