No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
Hello everyone, i thought of this question and i would greatly appreciate some pointers on it. I have 2 simple Java Projects which are GUI based. One writes some information to a text file. The other reads the text field and displays it on the GUI. My question: Is it …
I'm bad with math related to business, hope i'm right about this. By answering: "why it won't subtract the monthly total per month." You'll see that you will want the subtract the principle each month. So by right this subtraction should be included inside the loop. monthly-- : only decrements …
Hmm, for me, i'll do it this way. [CODE] double max(double a, double b, double c) { double max=a; if(b>max) max = b; if(c>max) max = c; return max; } [/CODE] It might not be the best solution but i find it easier this way.
The End.
TehCPP