C# 인스턴스의 계산 문자열에서 서로 다른 문자의 개수

2838 단어 C#Class인스턴스
*문제 설명:
여러 문자로 구성된 문자열을 입력하여 대문자, 소문자, 숫자 및 기타 문자의 개수를 출력합니다.
코드는 다음과 같습니다.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace fengyun
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("                 :");

            String s = Console.ReadLine();
            byte[] array = System.Text.Encoding.ASCII.GetBytes(s);
            //string  ASCII byte[]  

           /* int[] m = new int[array.Length]; for (int i = 0; i < s.Length; ++i) { m[i] = (int)(array[i]); }*/
            Myclass.get_number(array);
            Console.ReadKey();


        }
    }

    class Myclass
    {
        public static void get_number(params byte[] a)
        {
            int big = 0, small = 0, number = 0, other = 0;


            for (int j = 0; j < a.Length; ++j)
            {
                if (a[j] >= 65 && a[j] <= 90)
                {
                    ++big;
                }
                else if (a[j] >= 97 && a[j] <= 122)
                {
                    ++small;
                }
                else if (a[j] >= 48 && a[j] <= 57)
                {
                    ++number;
                }
                else
                {
                    ++other;
                }
            }
            Console.WriteLine("        :{0}         :{1}       :{2}         :{3}", big, small, number, other);
        }

    }
}

실행 결과는 다음과 같습니다.

좋은 웹페이지 즐겨찾기