📜  java程序在字符串中打印元音 - Java代码示例

📅  最后修改于: 2022-03-11 14:52:22.064000             🧑  作者: Mango

代码示例2
String str = "hello";
String vowels = "aeiou";

for(char c : str) if(vowels.contains(c)) System.out.println(c + "");