Return Array

From CompSciWiki
Revision as of 12:41, 30 March 2010 by TravisAM (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Back to the Program-A-Day homepage

Problem

Write a method which will take an array of ints as a parameter. The method should change the contents of the array to 1-5. Print the array to show the contents have been changed and return it. Example: int[] n = {45,32,78,45,890};
returnArray(n);
Output:1,2,3,4,5

 

SideSectionTitle

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

An image or By Students section

Solution

The solution...

public static int[] returnArray( int[] n )
{
   for( int i = 0; i < n.length; i++ )
   {
       n[i] = i;
       System.out.print( n[i] + "," );
   }
   return n;
}

Code

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

Back to the Program-A-Day homepage