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
GrogVix [38]
3 years ago
9

Brooke is trying to save enough money in the next fifteen months to purchase a plane ticket to Australia. Every month Brooke sav

es $100. Write a for loop that displays how much money Brooke will save at the end of each month for the next 15 months.
Computers and Technology
1 answer:
vlada-n [284]3 years ago
4 0

Answer:

This program required for loop and three variables are declared and initialized. then for loop is use to calculate the saving of 15 months.

The description of each line of code is given below in explanation section. However, it is noted that this program is implemented in C++ programming language using Dev C++.

Explanation:

#include <iostream>

using namespace std;

int main()// program started

{

int totalSaving=0;// total saving at the end of each month  

int monthlySaving=100;// each month saving  

int totalMonth2Save=15;// total month in which he can save

 

for (int i=1; i<=totalMonth2Save;i++)// for loop to count saving for 15 month

{

 totalSaving= totalSaving + monthlySaving;// add the saving of each month into total saving

 

}

cout<<"Total saving at the end of 15th month is ";// display the message  

cout<<totalSaving;//of total 15 month saving  

cout<<"$";// show the currency symbol

 

return 0;

}

You might be interested in
What is the process in which a server is partitioned into smaller components virtually
Shkiper50 [21]

virtualization is the process in which a server is partitioned into smaller components virtually.

6 0
3 years ago
Read 2 more answers
You are a data engineer implementing a lambda architecture on Microsoft Azure. You use an open-source big data solution to colle
eduard

Answer:

Apache Spark

Explanation:

The user seems to be a system technician who applies the lambda architecture with Microsoft Azure. using the open-source Big Data system to store, analyze, as well as manage information. Analytical information storage is not doing well.

It would eventually incorporate the approach that satisfies the following specifications that enable the development of a High definition Insight cluster to satisfy the specifications. So, the Apache Spark cluster type that he would develop.

7 0
3 years ago
____ is a predefined graphic. (Points : 4) Clip art A content control A task unit A building block
castortr0y [4]
<span>This is called clip art</span>
6 0
3 years ago
Which of the following is not an advantage to using a web hosting provider?
vfiekz [6]

I'd say all of these are wrong, though my best guess would be it will provide security.

8 0
3 years ago
Read 2 more answers
A search expression entered in one search engine will yield the same results when entered in a different search engine.
garik1379 [7]

Answer:

false

Explanation:

8 0
2 years ago
Other questions:
  • What formula most likely exists in D18?
    5·1 answer
  • If images around the edges of a monitor do not look right, the computer might have a(n) access problem. hardware problem. Intern
    13·2 answers
  • A thesaurus can be used to look up a (n) or word similar in meaning to a given word
    15·1 answer
  • You can move the insertion point into the next text placeholder by pressing the _____ keyboard shortcut keys. ctrl m ctrl n ctrl
    7·1 answer
  • 7.3 A hydraulic lift has a mechanical advantage of 6. If the load weighs 780 N, calculate
    13·1 answer
  • Which statement best describes desktop publishing?
    10·1 answer
  • Can someone help me write an algorithm and a flow chart pls for question 3
    7·1 answer
  • 4.1 code practice python
    13·1 answer
  • I need help pleaseeeeeee!
    10·2 answers
  • A _____ is a grid that displays fields as columns and records as rows.
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!