c#编程,在键盘上输入一串字符,统计字母、数字和其他字符的个数。

2024-12-16 15:23:12
推荐回答(1个)
回答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);
  }
}