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
4 Posted Topics
Re: 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. | |
Re: you shld av written the whole code, so a helper wld know wat to do.... write the full code then you'll get help | |
Re: [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; } |
The End.