C#计算字符串中元音和辅音的数量

using System;

public class Demo {
   public static void Main() {
      string myStr;
      int i, len, vowel_count, cons_count;

      myStr = Jack Sparrow;

      vowel_count = 0;
      cons_count = 0;

      // find length
      len = myStr.Length;

      for(i=0; i<len; i++) {
         if(myStr[i] =='a' || myStr[i]=='e' || myStr[i]=='i' || myStr[i]=='o' || myStr[i]=='u' || myStr[i]=='A'
            || myStr[i]=='E' || myStr[i]=='I' || myStr[i]=='O' || myStr[i]=='U') {
            vowel_count++;
         } else if((myStr[i]>='a' && myStr[i]<='z') || (myStr[i]>='A' && myStr[i]<='Z')) {
            cons_count++;
         }
      }
      Console.Write(\nVowel in the string: {0}\n, vowel_count);
      Console.Write(Consonant in the string: {0}\n\n, cons_count);
   }
}

相关文章

c#如何实现添加到列表代码:var list = new&...
c#循环访问字典代码:foreach(var item in m...
using System; namespace OperatorsAppl { class Program ...
using System; class Program { static void Main(string[...
using System; namespace OperatorsAppl { class Program {...
using System; namespace DeclaringConstants { class Pro...