0

java program input:-My input is:- googshaopobuieoele and output which I want is 7 ?

Note:- whatever my input I want to count only consonent not vowels.

`   int j;  
    int Count=0;
    String scc="googshaopobuieoele";
    String  s[]=scc.split("");
    System.out.println(s.length);

    for( j=0;j<s.length;j++)
    {

        if(s[j]!="a" && s[j]!="i" && s[j]!="o" && s[j]!="u" &&s[j]!="e")
            Count++;
    }
    System.out.println(Count);
}}

`

lucky
  • 57
  • 1
  • 8

0 Answers0