Project Links
Home Page
Project Report
(1024 KB)
26/06/2001
Finished Applet
21/02/2001
Post-Hasse
11/12/2000
Pre-Hasse
3/12/2000
Project Update
12/11/2000
Matrix Groups
27/10/2000
Example Applets
16/10/2000
Hello Applet
4/10/2000
|
Hello World!
Below is the classic "Hello World" program that appears at the start of any programming course. Here it is executed as a Java Applet, and the source code is shown after the Applet.
Source Code:
/* This is an applet that displays "Hello World!" */
import java.awt.Graphics;
public class HelloApplet extends java.applet.Applet {
public void paint(Graphics g) {
g.drawString("Hello World!",5,25); }
}
|