Search:

Type: Posts; User: Squirrelly

Search: Search took 0.00 seconds.

  1. Replies
    7
    Views
    1,320

    One last question.... How do I get the totals of...

    One last question.... How do I get the totals of principal and interest.... I want to display them every 36th line....

    TIA
    Bill
  2. Replies
    7
    Views
    1,320

    Thanks Salem that did the trick.... Thanks...

    Thanks Salem that did the trick....

    Thanks
    Bill
  3. Replies
    7
    Views
    1,320

    Thanks Salem I got that fixed, however when it...

    Thanks Salem I got that fixed, however when it printed to my out file it skipped the 1: here let me show you...

    1 44.67 72.81 6700.00

    2 44.18 73.29 6627.19 ...
  4. Replies
    7
    Views
    1,320

    This is where I put the if statement balance...

    This is where I put the if statement

    balance -= principal;
    }
    if ((month % 6) == 0)
    {
    outfile << endl<<endl;
    }
    That didn't seam to work but thanks...
  5. Replies
    7
    Views
    1,320

    How do you ??????

    What I want to do is to insert a blank line every 6 lines in the print out, here is what I have:

    // This program produces a loan amortization

    #include <iostream>
    #include <iomanip>
    #include...
  6. Replies
    1
    Views
    1,411

    If stantment

    How do you write a IF statement that will check for a new line character......

    Thanks
    Squirrelly
  7. Replies
    2
    Views
    1,227

    Fibonacci sequence

    What am I doing wrong here, any suggestions....

    #include <iostream>
    #include <cmath>
    //using namespace std;


    int main ()
    {
    int num1, num2, num3;
Results 1 to 7 of 7