Search:

Type: Posts; User: Debbie Bremer

Search: Search took 0.01 seconds.

  1. I get how you compute it...but how do you...

    I get how you compute it...but how do you incorporate the loops that my instructor asks for?
  2. Mutiliplcation Program that uses a (do, while, and for loop)?

    Write a program that

    1. Uses the C++ iteration constructs (while, do, for).
    2. Use Boolean variables and expressions to control iterations.




    Project Requirements:
    1) ...
  3. Replies
    21
    Views
    8,642

    disregard my last post.

    disregard my last post.
  4. Replies
    21
    Views
    8,642

    Do I need to write my math statements in a series...

    Do I need to write my math statements in a series inside the for loop? Or would I use 1 statement like...interest = (init_Balance * pow (( 1 + rate/100 , months ))) - init_Balance;

    I have no clue...
  5. Replies
    21
    Views
    8,642

    I fixed the first correction you told me to...

    I fixed the first correction you told me to do...but im completely lost as to how i write the math statements in order to compute the interest for each month. How do i do that?
  6. Replies
    21
    Views
    8,642

    im just having so much confusion trying to figure...

    im just having so much confusion trying to figure out the right math to compute the interest. I know Im trying to calculate interest of each month...but the math statements throw me off. all i fized...
  7. Replies
    21
    Views
    8,642

    im a little confused by what you mean. does that...

    im a little confused by what you mean. does that mean i usea different variable there?

    also, im not even sure if my math equations are right?
  8. Replies
    21
    Views
    8,642

    The code I just posted will not compute my math...

    The code I just posted will not compute my math in the program. can anyone help me fix my problem?
  9. Replies
    21
    Views
    8,642

    #include using namespace std; ...

    #include <iostream>
    using namespace std;
    int main ( )
    {
    int months, count = 1;
    double init_Balance, rate, interest = 0, new_balance, total_Interest = 0, int_Accumulated;
    ...
  10. Replies
    21
    Views
    8,642

    ok sorry about that.

    ok sorry about that.
  11. Replies
    21
    Views
    8,642

    For some reason I cannot get my math to work. ...

    For some reason I cannot get my math to work.

    This is what I have so far:




    #include <iostream>
    using namespace std;
    int main ( )
  12. Replies
    21
    Views
    8,642

    I dont know how to type in the code for coompound...

    I dont know how to type in the code for coompound interest. Basically right now, I have the program to display the instructions...but as far as the math goes for interest...im confused. Can anyone...
  13. Replies
    21
    Views
    8,642

    Programming project help?

    Hello, I am really confused as to how to start my project that I was given for my C++ course.

    The instructions are:

    Write a function declaration for a function that computes interest on a...
Results 1 to 13 of 13