本文介绍了C程序来计算字符串中的元音的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

c程序来计算字符串中的元音

c program to count vowels in a string

推荐答案

char[] vowels = {'a','e','i','o','u'};
string input = txtInput.Text.ToLower();
char[] splittedResult = input.Split('');
int ctr = 0;

foreach(char result in splittedResult)
{
   switch(result)
   case vowels[0]:
   case vowels[1]:
   case vowels[2]:
   case vowels[3]:
   case vowels[4]: ctr++;
                   break;
   default: break;
}



ctr的结果将是元音的数量.

如果这解决了您的问题,请标记为答案并投票5

问候,
爱德华(Eduard)



The result of ctr will be the count of vowels.

Please mark as answer and vote 5 if this solved your problem

Regards,
Eduard



这篇关于C程序来计算字符串中的元音的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-20 22:50