猿问

用c++统计文本中的英文字母数量,要怎么消除文本中的汉字对英语数量统计的影响呢?谢谢解答

FOSS
浏览 1254回答 1
1回答

书旅

while(true)//国标2312      {          infile>>temp[0];          if(infile.eof()) break;          if (temp[0]>=0xB0)//GB2312下的汉字,最小是0XB0          {                            s="";               continue;        }          else//非汉字字符不统计          {              s+=temp[0];              infile>>temp[1];              s+=temp[1];          }          wordcount[s]++;          s="";      }  
随时随地看视频慕课网APP
我要回答