77、78、79

#include
#include
#include
using namespace std;
int main(int argc, char* argv[])
{
 
 strstream textfile;
 {
  ifstream in(argv[1]);
        textfile << in.rdbuf();
 }
 ofstream out(argv[2]);
 
 const int bsz = 100;
 char buf[bsz];
 int line = 0;
 while(textfile.getline(buf, bsz)) {
  out.setf(ios::right, ios::adjustfield);
  out.width(1);
  out << ++line << ". " << buf << endl;
 }
 return 0;
}


#include
#include
#include
#include
using namespace std;
int main()
{
 locale loc(".936"); //创建本地化配置方案
 wcout.imbue(loc); //为wcout设置编码方案
 wifstream in(L"习题9-10输入.txt"); //创建文件宽输入流
 wofstream out(L"习题9-10输出.txt"); //创建文件宽输入流
 in.imbue(loc);  //为in设置编码方案
 out.imbue(loc);  //为out设置编码方案
 wstring line;  //用来存储一行内容
 map counter;
 
 while(getline(in,line))
 {
  for(int i=0; i   {
   counter[line[i]] ++;
  }
 }
 map::iterator itor;
 int i = 1;
 for(itor=counter.begin(); itor != counter.end(); ++itor, ++i)
 {
  out<first<<"\t"<second<<"\t";
  if(i%4 == 0)
  {
   out<   }
 }
 in.close();
 out.close();
 return 0;
}

你可能感兴趣的:(77、78、79)