Sunday, October 19, 2014

Using Array In Java

Program:

package prem5;

public class koresi5 {
public static void main(String[]args){

int munim[]={12,54,95,68,87,32,45,15};

System.out.println("the 4th number element is " +munim[5]);
}
}

Output:

the 4th number element is 32

Screenshots

Program


Output


No comments: