Answers for "java code for check vowel and consonant"

0

Vowel or consonant in java using if else

public class Main{public static void main(String[] args) {char ch = 'e';if(ch == 'a' || ch == 'e' || ch == 'i' || ch == 'o' || ch == 'u' )System.out.println(ch + " is a vowel");elseSystem.out.println(ch + " is a consonant");}}
Posted by: Guest on June-12-2021
-1

check vowel present in 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);
         }
      }
   }
}
Posted by: Guest on November-06-2021

Code answers related to "java code for check vowel and consonant"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language