Suggestions
Use up and down arrows to review and enter to select.Please wait while we process your payment
If you don't see it, please check your spam folder. Sometimes it can end up there.
If you don't see it, please check your spam folder. Sometimes it can end up there.
Please wait while we process your payment
By signing up you agree to our terms and privacy policy.
Don’t have an account? Subscribe now
Create Your Account
Sign up for your FREE 7-day trial
Already have an account? Log in
Your Email
Choose Your Plan
Save over 50% with a SparkNotes PLUS Annual Plan!
Purchasing SparkNotes PLUS for a group?
Get Annual Plans at a discount when you buy 2 or more!
Price
$24.99 $18.74 /subscription + tax
Subtotal $37.48 + tax
Save 25% on 2-49 accounts
Save 30% on 50-99 accounts
Want 100 or more? Contact us for a customized plan.
Your Plan
Payment Details
Payment Summary
SparkNotes Plus
You'll be billed after your free trial ends.
7-Day Free Trial
Not Applicable
Renews June 17, 2023 June 10, 2023
Discounts (applied to next billing)
DUE NOW
US $0.00
SNPLUSROCKS20 | 20% Discount
This is not a valid promo code.
Discount Code (one code per order)
SparkNotes Plus subscription is $4.99/month or $24.99/year as selected above. The free trial period is the first 7 days of your subscription. TO CANCEL YOUR SUBSCRIPTION AND AVOID BEING CHARGED, YOU MUST CANCEL BEFORE THE END OF THE FREE TRIAL PERIOD. You may cancel your subscription on your Subscription and Billing page or contact Customer Support at custserv@bn.com. Your subscription will continue automatically once the free trial period is over. Free trial is available to new customers only.
Choose Your Plan
For the next 7 days, you'll have access to awesome PLUS stuff like AP English test prep, No Fear Shakespeare translations and audio, a note-taking tool, personalized dashboard, & much more!
You’ve successfully purchased a group discount. Your group members can use the joining link below to redeem their group membership. You'll also receive an email with the link.
Members will be prompted to log in or create an account to redeem their group membership.
Thanks for creating a SparkNotes account! Continue to start your free trial.
Please wait while we process your payment
Your PLUS subscription has expired
Please wait while we process your payment
Please wait while we process your payment
Like one dimensional arrays, arrays of multiple dimensions easily lend themselves to use in loops to access the data elements in the array. Rather than using a single loop to access the data it will usually help to use a nested loop. More generally, you will normally use n loops for an n-dimensional array.
To illustrate how you might use a nested loop construct to go through all of the data a two-dimensional array, we will show how you might initialize a tic-tac-toe board. First assume that you have the following type defined for piece.
Now we can declare an array to represent the board. It should have the appropriate number of rows and columns.
What remains is to loop through all of the cells in the array. You can imagine doing this by going through each row successively and within each row going across each of the columns and initializing each cell. If this is the approach you might use an outer for loop to iterate through the rows. Whatever is inside that for loop will be done on each row. The action we want to perform on each row is to iterate across each column. This action corresponds to the inner for loop below:
We could just as easily have had the outer loop iterate across the columns and the inner loop iterate down the rows. Both work just as well when you merely want to perform some action on all of the cells. There are other cases where you might want to go through the two dimensional array in one manner as opposed to the other, depending on the task.
Please wait while we process your payment