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

using System;

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

      myStr = "Avengers";

      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 {
            cons_count++;
         }
      }

      Console.Write("/nVowels in the string: {0}/n", vowel_count);
   }
}

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/265923.html

(0)
上一篇 2022年6月7日
下一篇 2022年6月7日

相关推荐

发表回复

登录后才能评论