Printing an Array

From CompSciWiki
Revision as of 12:01, 1 April 2010 by JustinS (Talk | contribs)

Jump to: navigation, search

Back to the Program-A-Day homepage

Problem

This problem involves you printing out an array of integers using a for loop. You want to make an array of 10 integers with values you can hard code into the program. Remember that you can create an array of any type with hard coded values like this:

int[] array = {1, 2, 3};
 

SideSectionTitle

float
Taken from http://www.flickr.com/photos/daniello/565304023/

An image or By Students section

Solution

The solution...

Code

SolutionCode goes here. Please DO NOT put your code in <pre> tags!

Back to the Program-A-Day homepage