using System;
class test
{
static void Main()
{
Console.Write("请输入字符串:");
string s=Console.ReadLine();
int a1=0; // 申明3个变量记录它们三个的个数;
int b1=0;
int c1=0;
foreach (char c in s) //字符c遍历数组中的所有字符;
{
if (char.IsUpper(c)) //是否为大写 如大写计数器加1;
{
c1++;
}
else if (char.IsLetter(c)) //是否为小写 如小写计数器加1;
{
a1++;
}
else if(char.IsDigit(c)) //是否为数字 如数字计数器加1;
{
b1++;
}
}
Console.WriteLine("数字有:"+b1+"\n小写字母有:"+a1+"\n大写字母有:"+c1);
}
}
参考资料:我``
本回答被提问者和网友采纳