Search:

Type: Posts; User: GregBrannon

Search: Search took 0.11 seconds.

  1. Re: HW problem. Trying to finish up the coding for this assignment

    You're welcome.

    Keep coding.
  2. Re: HW problem. Trying to finish up the coding for this assignment

    Do you see that you initialized (set to an initial value) all of your other variables but not checkFee? Fix that.
  3. Re: HW problem. Trying to finish up the coding for this assignment

    Set the checkFee based on the number of checks:
    if ( checks >= 60 )
    {
    checkFee = fee4;
    }
    else if ( checks >= 40 )
    {
    checkFee = fee3;
    }
    // etc. . .
  4. Re: HW problem. Trying to finish up the coding for this assignment

    Thanks for fixing.

    Are you sure that the total fee is a sum of each block of checks times that block's fee? I interpret the fee as being $10 plus a single rate * the total number of checks...
  5. Re: HW problem. Trying to finish up the coding for this assignment

    Welcome to the forum! Please read this topic to learn how to post code in code or highlight tags and other useful info for newcomers.
Results 1 to 5 of 5