Final answer:
To print out all the ints in the array x, use a for-each loop in Java. For an array of Strings, more information is needed.
Step-by-step explanation:
To print out all the ints in the array x, one per line, you can use a for-each loop in Java. Here is an example:
for (int num : x) {
System.out.println(num);
}
This code iterates through each element in the array x and prints it out using the println method of the System.out class. Each int will be printed on a separate line.
As for the second part of the question related to an array of Strings, it is not clear what is being asked. Please provide more details or clarify the question so that I can assist you better.