77、78、79

来源:互联网 发布:java 二级考试真题 编辑:程序博客网 时间:2024/06/05 14:22
#include <fstream>
#include <strstream>
#include <cstdlib>
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 <iostream>
#include <fstream>
#include <string>
#include <map>
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<wchar_t, int> counter;
 
 while(getline(in,line))
 {
  for(int i=0; i<line.length(); ++i)
  {
   counter[line[i]] ++;
  }
 }
 map<wchar_t, int>::iterator itor;
 int i = 1;
 for(itor=counter.begin(); itor != counter.end(); ++itor, ++i)
 {
  out<<itor->first<<"\t"<<itor->second<<"\t";
  if(i%4 == 0)
  {
   out<<endl;
  }
 }
 in.close();
 out.close();
 return 0;
}
原创粉丝点击