
public class Feldtest
{
  int[] x; 
  
  public Feldtest() 
  { x = new int[50];
    this.action(); 
    feldAusgeben();
  } 

  public void feldAusgeben()
  { for(int i=0; i<x.length; i++) 
    {   System.out.print (x[i] + " "); 
        if (i % 10 == 9) System.out.println();  
    } 
  }
  
  public void action() 
  { for(int i=0; i<x.length; i++) 
        x[i] = i+1; 
     
    x[13] = 25; 
  }  
}

