Iterating Over a Collection
How would you calculate how much money you have to spend? Each denomination needs a different value assigned. You compute a running total until you have accounted for all of the bills. For the moment, assume you are uncomfortable carrying large bills, so your wallet or purse contains $1, $5, $10, or $20 bills. The following program represents a “pseudo code” solution to this exercise.
totalCash is a whole number that starts at zero
while (I still have bills left to account for)
Save your time - order a paper!
Get your paper written from scratch within the tight deadline. Our service is a reliable solution to all your troubles. Place an order on any task and we will take care of it. You won’t have to worry about the quality and deadlines
Order Paper Nowif (current bill is $1)
add 1 to totalCash
if (current bill is $5)
add 5 to totalCash
if (current bill is $10)
add 10 to totalCash
if (current bill is $20)
add 20 to totalCashif (totalCash > itemPrice)
I have enough money to buy the item.else
I don’t.
This is an example of an iterative method because it is repeated over and over for the entire collection.
Think of a way in which you apply an iterative method to a collection of similar objects in your day-to-day life. Be creative—in other words, identify a situation that does not involve money (either paper or coins). Think about the ways in which the items of your collection are alike, as well as the key ways in which they differ.
By Day 3, post a response that:
- Briefly describes your collection and the elements that comprise it
- Identifies the characteristic(s) that differentiate(s) the elements of the collection
- Briefly describes the method you apply to that collection
- Defines the method using pseudo code that contains at least two if methods
Information Systems homework help