This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.

Skip to content
Snippets Groups Projects
Commit 32bbab48 authored by OEResource sharing's avatar OEResource sharing
Browse files

Update file CountVowels.java for resource with id: 48712275-3cd1-4bb5-a4f0-94c3b7293825

parent a4ce336c
Branches
No related merge requests found
public class CountVowels {
private static int countVowels(String text){
//Implementieren Sie Ihre Lösung hier.
return 0; //TODO: Entferne diese Zeile.
}
private static int countVowels(String text, char vowel){
//Implementieren Sie Ihre Lösung hier.
return 0; //TODO: Entferne diese Zeile.
}
public static void main(String[] args) {
//TODO: Testen Sie Ihr Programm hier.
//System.out.println(countVowels("Hello"));
//...
}
}
public class CountVowels {
private static int countVowels(String text){
//Implementieren Sie Ihre Lösung hier.
return 0; //TODO: Entferne diese Zeile.
}
private static int countVowels(String text, char vowel){
//Implementieren Sie Ihre Lösung hier.
return 0; //TODO: Entferne diese Zeile.
}
public static void main(String[] args) {
//TODO: Testen Sie Ihr Programm hier.
//System.out.println(countVowels("Hello"));
//...
}
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment