public class IntegerArrayPrint {
public static void main(String[] args)
{
int intArr1[] = { 10, 20, 15, 22, 35 };
for(int array : intArr1) {
System.out.println(array);
}
}
}
public static void main(String[] args)
{
int intArr1[] = { 10, 20, 15, 22, 35 };
for(int array : intArr1) {
System.out.println(array);
}
}
}
No comments:
Post a Comment