Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #44.2K
Ranked #4K
~724 People Reached
Favorite Forums
Favorite Tags

4 Posted Topics

Member Avatar for stephen lynch

your constructors declaration, there is something missing. Any class that extends JFrame. The first line of code in the constructor of any class that extends JFrame is `super("Title of the Frame")`. I didnt check the rest of ur code.

Member Avatar for Dxpat4real
0
229
Member Avatar for UltimateKnight
Member Avatar for Desi Boy

you shld av written the whole code, so a helper wld know wat to do.... write the full code then you'll get help

Member Avatar for JamesCherrill
0
72
Member Avatar for nickliutw

[QUOTE=;][/QUOTE] Try dis public static int mathPower(int base, int power){ int ba = base; int pow= power; int result = 1; if( pow =0) return result; else{ for(int j=1: j <= pow: j++) result = (ba *= pow); } return result; }

Member Avatar for nickliutw
0
121

The End.