Write a program to display a message in window using Applet class.
package Applet; import java.applet.*; import java.awt.*; public class myApplet extends Applet { public void paint (Graphics g) { g.drawString ("Hello World", 25, 50); } }
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments