cng.zeroElt( value, 4 );
The element in cell 4 of the array would be set to zero.
Here is the program again, with a step-by-step explanation of how it works. If this is already clear to you, skip this page.
| The program: | Description of the action: | 
|---|---|
// Array Example
//
class ChangeArray
{
  void print ( int[] x )
  {
    for ( int j=0; j < x.length; j++ )
      System.out.print( x[j] + " " );
    System.out.println( );
  }
  void zeroElt ( int[] x, int elt )         // 6.
  {
    if ( elt < x.length )                   // 7.
      x[ elt ] = 0;                         // 8.
  }
}
class ChangeTest
{
  public static void main ( String[] args ) // 1.
  {
    ChangeArray cng = new ChangeArray();    // 2.
    int[] value = {27, 19, 34, 5, 12} ;     // 3.
    System.out.println( "Before:" );        // 4.
    cng.print( value );
    
    cng.zeroElt( value, 0 );                // 5.
    System.out.println( "After:" );         // 9.
    cng.print( value );
  }
}
 | 
  | 
Could ChangeArray have a method that
changes several elements of an array?