1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
KatRina [158]
3 years ago
14

Compute and output compound interest on $1000.00 for 10 years at interest rates of 5%, 6%, 7%, 8%, 9% and 10% This is an exercis

e in creating nested loops. You must have an inner loop that calculates compound interest via For 1 to 10 amt
Business
1 answer:
jek_recluse [69]3 years ago
5 0

Here is the complete question.

Compute and output compound interest on $1000.00 for 10 years at interest rates of 5%, 6%, 7%, 8%, 9% and 10%

This is an exercise in creating nested loops. You must have an inner loop that calculates compound interest via

For 1 to 10  

amt = rate*amt + amt;

You should have an outer loop that iterates the rate from 0.05 to 1.0.

Interest on $1000.00 over 10 years

rate     total

0.05     $1628.89

0.06     $1790.85

0.07     $1967.15

0.08     $2158.92

0.09    $2367.36

0.1       $2593.74

Press any key to continue

Answer:

Explanation:

The main objective here is to compute  and output compound interest program for the above given data set using the C++.

SO THE PROGRAM GOES THUS:

#include <iostream>

using namespace std;

int main()

{

    double amt;

    double rate = 0.05;

    cout << "\nCompunt interest: " << endl << endl;

    cout << "Rate\tTotal" << endl << endl;

    for (int i = 0; i < 6; i++)

    {

         amt = 1000;

         for (int j = 0; j < 10; j++)

         {

             amt = (rate * amt) + amt;

         }

         cout << rate << "\t$" << amt << endl;

         rate = rate + 0.01;

    }

    system("pause");

}

AND THE SAMPLE OUTPUT IS:

Compound Interest:

Rate             Total

0.05         $1628.89

0.06         $1790.85

0.07         $1967.15

0.08         $2158.92

0.09         $2367.36

0.1            $2593.74

Press any key to continue...

You might be interested in
Choosing a differentiated targeting strategy has many​ benefits, but a potential downside is that​ __________.
Nesterboy [21]
<span>it requires a company or individual divide resources on multiple targets rather than one. Therefore, one must use these resources more efficiently because he or she is using the same amount, usually concentrated on one target, on multiple. A company should only use this strategy if it is extremely confident in its ability to market simultaneously to multiple groups.</span>
4 0
3 years ago
Suppose that while melissa was on the coast, she also spent two days sightseeing the national parks in the area. to do the sight
Virty [35]
Most of the times when a personnel is sent for an official business trip, transportation and lodging, and sometimes even meals are shouldered by the company. 

In the statement given above, it is noted that the meals that Melissa took are considered personal in nature. Hence, she can deduct this from the business expenses. 
8 0
2 years ago
A special surveillance and rescue team is being deployed to counter the menace of pirates in the Indian Ocean. Nick, Sid, Leah,
masha68 [24]

Answer:

cohesion

Explanation:

i think its cohesion because the word means to unite and if the understanding is high then when they combine it would be greater. im not 100% though

5 0
2 years ago
27. Average cost curves (except for average fixed cost) tend to be U-shaped, decreasing and then increasing. Marginal cost curve
jasenka [17]

Answer:

Explanation: Both the marginal cost curve and the average variable cost curve are U-shaped. For many firms, this is true because their production exhibits increasing returns at low levels of output and decreasing returns at high levels of output. At the minimum of average cost, the marginal cost curve intersects the average cost curve. This is because when marginal cost is above average cost, average cost is decreasing and when marginal cost is below average cost, average cost is decreasing.

6 0
3 years ago
Read 2 more answers
Being aware of your expectations is an example of a. For introducing mindfulness to young children
ohaa [14]

Being aware of one's expectations is to keep them in check and to ensure that they are realistic. This is one of the ways to practice <u>Effective Parenting.</u>

<h3>Dangers of Unrealistic Expectations</h3>

Some of the dangers of unrealistic expectations are:

  • Friction
  • misunderstandings
  • frustrations
  • damage to the self-esteem of the kids and stifle healthy mental development of the kids

See the link below for more:
brainly.com/question/5345351

8 0
2 years ago
Other questions:
  • Given the following information, calculate the net present value:Initial outlay is $50,000; required rate of return is 10%; curr
    14·1 answer
  • When the revenue for a business is less than its costs, it is making a profit
    10·2 answers
  • Dave's boss told him that he doesn't have to attend the company picnic (which everybody dislikes) if dave meets his sales quota
    14·1 answer
  • Sally's spice store sells a variety of spices and healthy cooking ingredients. which targeting method should sally choose if she
    10·1 answer
  • how does money solve the problem of double coincidence of wants? explain with an example of your own.​
    10·1 answer
  • Nikolai knows that what his boss has asked him to do is not in the best interest of the company. He also knows that if he does n
    7·2 answers
  • If the kitchen in an operation has sewage backup the manager should
    6·1 answer
  • You are comparing two annuities. Annuity A pays $100 at the end of each month for 10 years. Annuity B pays $100 at the beginning
    12·1 answer
  • Which market structure relies most heavily on advertising?
    11·1 answer
  • choose the correct term for each of the following descriptions. expenditure on research and development
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!