ClaassPercent.cs
资源名称:2.rar [点击查看]
上传用户:hshongkong
上传日期:2021-11-20
资源大小:10241k
文件大小:1k
源码类别:

多国语言处理

开发平台:

C#

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace ChineseSplitter
  5. {
  6.     public class ClaassPercent
  7.     {
  8.         public static int Getpercent(string[] roles, string[] str)
  9.         {
  10.             int Percent = 0;
  11.             for (int i = 0; i < str.Length; i++)
  12.             {
  13.                 for (int j = 0; j < roles.Length; j++)
  14.                 {
  15.                     if (str[i] == roles[j])
  16.                     {
  17.                         Percent += 1;
  18.                     }
  19.                 }
  20.             }
  21.             return Percent;
  22.         }
  23.     }
  24. }