package apples;
public class boy {
public static void main (String []args) {
int thileban []= new int[10];
thileban[0]=87;
thileban[1]=543;
thileban[9]=65;
System.out.println(thileban[1]);
}
package apples;
public class boy {
public static void main (String []args) {
int thileban[]= {2,4,5,7,9};
System.out.println(thileban[2]);
}
}
}
Comments
Post a Comment