//统计一串英文字符串的元音字母的个数
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace _4_3
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("输入一串字符串");
string s = Console.ReadLine();
string a="a";
string e="e";
string i="i";
string o="o";
string u="u";
int count=0;
for (int j = 0; j < s.Length -1; j++)
{
if (a.Equals(s.Substring(j, j + 1)) | e.Equals(s.Substring(j, j + 1)) | i.Equals(s.Substring(j, j + 1)) | o.Equals(s.Substring(j, j + 1)) | u.Equals(s.Substring (j,j+1)))
count++;
}
Console.WriteLine("元音字母个数为:" + count);
}
}
}
一毛钱
相关分类