C#从键盘输入字符串,并将其中的字母数字和其他字符分类输出。求代码 50
展开全部
参考代码:
using System;
class Program
{
static void Main()
{
Console.Write("请输入一串字符: ");
string s = Console.ReadLine();
int alpha = 0, digit = 0, other = 0;
foreach (char c in s)
{
if (Char.IsLetter(c))
++alpha;
else if (Char.IsDigit (c))
++digit;
else
++other;
}
Console.WriteLine("字母{0}个,数字{1}个,其他字符{2}个", alpha, digit, other);
}
}
using System;
class Program
{
static void Main()
{
Console.Write("请输入一串字符: ");
string s = Console.ReadLine();
int alpha = 0, digit = 0, other = 0;
foreach (char c in s)
{
if (Char.IsLetter(c))
++alpha;
else if (Char.IsDigit (c))
++digit;
else
++other;
}
Console.WriteLine("字母{0}个,数字{1}个,其他字符{2}个", alpha, digit, other);
}
}
更多追问追答
追问
不是字符个数
是分类输出
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询