Answer:
ooooooooo[soooooooo ioooo egg vn
This is a good question, and I've wondered about that myself. I'm going to 'report' the question, not because there's anything wrong with it, but to bring it to the attention of the Moderators, so they can tell both of us.
Answer:
Answered below
Explanation:
//Program is written in Java.
public void first three elements(int[] nums){
int I;
//Check if array has up to three elements
if(nums.length > 3){
for(I = 0; I < nums.length; I++){
while (I < 3){
System.out.println(nums [I]);
}
}
else{
System.out.print("Array does not contain up to three elements");
}
}
}