用c#编程从键盘上输入3段文字统计单词数,字母数,无重复字母数,非字母数
1个回答
展开全部
// 在键盘上输入一串字符,统计字母、数字和其他字符的个数。
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);
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询