Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~131 People Reached
Favorite Forums
Favorite Tags
java x 3
Member Avatar for puffercc

I need someone to help fix the following code and re-write into IF-THEN logic? [code] public class Mystery4 extends Applet{ int clickCount=0; public boolean mouseDown(Event evt,int x,int y) { clickCount++; repaint(); return true; } public void paint(graphics g) { g.drawString("Click 10 times!",80,30); g.drawString("Clicks: "+clickCount, 120,50); switch(clickCount) { case 0: g.drawString("You …

Member Avatar for puffercc
0
131