Respuesta :
Answer:
for(String s:words)
if(s.endsWith("ing"))
System.out.println(s);
Explanation:
Create an enhanced for loop that iterates through the words array
Check if an element in words ends with "ing" using endsWith() method (Since it is said that strings are lowercase letters, we do not need to check it)
If you find one that ends with "ing", print the element
The code segment is an illustration of loops.
Loops are used to perform iterative and repetitive operations
The code segment in Java that prints all elements of the array that ends with "ing" is as follows:
for(String s:words){
if(s.endsWith("ing")){
System.out.println(s);}
}
The flow of the code segment is as follows
- The first line iterates through the array elements
- The second line checks if the current array element ends with "ing"
- The third line prints the array element is the second line is true
Read more about similar code segments at:
https://brainly.com/question/14592816