摘要:
1 /*统计除了>之外的行里面CHED四个字母总数*/ 2 #include 3 #include 4 #include 5 using namespace std; 6 7 class FindLetter 8 { 9 private:10 ifstream m_r;11 ofstream m_w;12 string m_falphabet,m_temp;13 char m_jump;//要跳跃的字符14 unsigned int *m_number,m_length;//计数 和 文件中的一行的个数... 阅读全文