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
Related Q & A:
- how to Create a Java Package from MATLAB Code?Best solution by Stack Overflow
- how to create a new syntax in java?Best solution by Stack Overflow
- How to create a simple counter program?Best solution by Stack Overflow
- Do you need internet for a green screen?Best solution by wikihow.com
- How to create this Java program?Best solution by ChaCha
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
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.