“Wie man prüft, ob ein Charakter Vokal in Java ist” Code-Antworten

Wie man prüft, ob ein Charakter Vokal in Java ist

public class CodeGrepper {
    public static boolean isVowel(char letter) {
        String vowels = "aeouiAEOUI";
        return vowels.indexOf(letter) != -1; 
    }
    public static void main(String[] args) {
        System.out.println(isVowel('a')); // true
        System.out.println(isVowel('z')); // false
    }
}
Wissam

Überprüfen Sie den Vokal, der in String Java vorhanden ist

public class FindingVowels {
   public static void main(String args[]) {

      String str = new String("Hi Welcome to Tutorialspoint");
      for(int i=0; i<str.length(); i++) {
         if(str.charAt(i) == 'a'|| str.charAt(i) == 'e'|| str.charAt(i) == 'i' || str.charAt(i) == 'o' || str.charAt(i) == 'u') {
            System.out.println("Given string contains "+str.charAt(i)+" at the index "+i);
         }
      }
   }
}
Real Rattlesnake

Ähnliche Antworten wie “Wie man prüft, ob ein Charakter Vokal in Java ist”

Fragen ähnlich wie “Wie man prüft, ob ein Charakter Vokal in Java ist”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen