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
~522 People Reached

4 Posted Topics

Member Avatar for stema08
Member Avatar for Denniz
0
41
Member Avatar for VirusTalker

Hi VirusTalker, Your code seems Ok. However, in the [I]printContents(BufferedReader in)[/I] method, after tokenizing the read string from file, try checking if it [I]hasMoreTokens[/I]. Look at the below modified code of your method and try if it works. Hope it does; private static void printContents(BufferedReader in) { double[][] a = …

Member Avatar for kalyan_au_cse
0
150
Member Avatar for ndodi
Member Avatar for stema08
0
83
Member Avatar for Gerbilkit

First you are referencing a non-existent variable in `display()`. You've declared `double deductionFederalTax;` in the `calculateNetMonthly()` yet you are using `deductFederalTax` in `the display()` method. However so, the scope of `deductionFederalTax` variable is only valid in the `calculateNetMonthly()` method and cannot be reffered to in the `display()` method. So, declare …

Member Avatar for stema08
0
248

The End.