FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

GitHub Viewer

//Array in java import java.lang.*; class Array1 { public static void main(String atg[]) { int iCnt=0; int arr[]=new int [5]; arr[0]=10; arr[1]=20; arr[2]=30; arr[3]=40; arr[4]=50; System.out.println("Size of array is:"+arr.length); //length is the property for array in java //System.out.println("ELements of array are:"+arr); =>output _>[I@85ede7b System.out.println("Data by for loop"); for(iCnt=0;iCnt

Back | FazBrowse Home | New Git URL