using System;public class Demo {public static void Main() {string myStr;int i, len, vowel_count, cons_count;
编程学习网为您整理以下代码实例,主要实现: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#计算字符串中元音和辅音的数量
 
				
         
 
            
        
             猜你喜欢
        
	     - C# break语句 1970-01-01
- C#调用方法示例2 1970-01-01
- C#检查字符串是否包含特殊字符 1970-01-01
- C#基本语法 1970-01-01
- C#将十进制转换为八进制数 1970-01-01
- C#抽象和虚拟类 1970-01-01
- C#使用递归来计算阶乘 1970-01-01
- C#嵌套switch语句 1970-01-01
- C#使用string.concat来连接字符串 1970-01-01
- C#主线程 1970-01-01
