🌈 搜索
📅  最后修改于: 2022-03-11 14:52:22.064000             🧑  作者: Mango
String str = "hello"; String vowels = "aeiou"; for(char c : str) if(vowels.contains(c)) System.out.println(c + "");