How to create a java applet?

Java. Need to create a java program to display an applet with 10 blue vertical stripes and 10 green?

  • Java. Need to create a java program to display an applet with 10 blue vertical stripes and (10 green) horizontal Stripes (10pixels) It must use loops and methods.

  • Answer:

    public class xyz extends Applet { int w, h; public void init() { w=getWidth(); h=getHeight(); } public void paint(Graphics g) { int dx=w/20; setColor(new Color(Color.Blue)); for(int i=0;i<10;i++) g.fillRect(2*i*dx,0, dx, h); int dy=h/20; setColor(new Color(Color.Green)); for(int i=0;i<10;i++) g.fillRect(0,2*i*dy, w, dy); } } You play with the above

Apache at Yahoo! Answers Visit the source

Was this solution helpful to you?

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.