APCSA/U6/L3/U6_L3_Activity_Three.java
2026-03-25 09:44:21 -07:00

12 lines
326 B
Java

public class U6_L3_Activity_Three {
public static void printUn(String[] words) {
for (int i = 0; i < words.length; i++) {
if (
words[i].length() >= 2 && words[i].substring(0, 2).equals("un")
) {
System.out.println(words[i]);
}
}
}
}