“Comment vérifier si un personnage est une voyelle en java” Réponses codées

Comment vérifier si un personnage est une voyelle en java

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

Vérifiez la voyelle présente dans String Java

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

Réponses similaires à “Comment vérifier si un personnage est une voyelle en java”

Questions similaires à “Comment vérifier si un personnage est une voyelle en java”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code