C++输入、输出、读写、容器

 int num;

 cin>>num;//输入

 cout<

 读fstream;写:ofstream;

 //1.一次读一个单词
 string s,word;
 fstream in("1.txt");
 //in >> s;//每读一次读一个单词
 while(in>>word)

  cout << word << endl;

 //2.一次读一行
 string line; 
 fstream in("1.txt");
 //getline(in, line);//每次读一行
 while(getline(in, line))
  cout << line << endl;

 //3.读第一个文件输出到第二个文件
 ifstream in("1.txt");
 ofstream out("2.txt");
 string s;
 while (getline(in, s))
  out << s << "\n";

 ifstream in("1.txt");
 string s, line;
 while (getline(in, line))
  s += line+"\n";
 cout << s;

 在c++中容器vector相当于c语言中的数组,用来存储。在vector中增加了x.size()用于返回容器中元素的个数,x.push_back用于给容器尾部增加值。

 //5.vector容器
 int arr[10];
 for (int i = 0; i < 10; i++)
  arr[i] = i;
 for (int i = 0; i < 10; i++)
  cout << arr[i] << endl;
 vectorv;//类V用来保持数据
 //vector当做数组来用
 for (int i = 0; i < 10; i++)
  v.push_back(i);
 for (int i = 0; i < v.size(); i++)
  cout << v[i] << endl;
 for (int i = 0; i < v.size(); i++)
  v[i] = v[i] * 10;
 for (int i = 0; i < v.size(); i++)
  cout << v[i] << endl;

 //6.
 vectorh;//用来保存字符串行
 ifstream in("1.txt");
 string line;
 while (getline(in, line))
  h.push_back(line);
 for (int i = 0; i < h.size(); i++)
  cout <

 //7.
 vectorwords;
 ifstream in("1.txt");
 string word;
 while (in >> word)
  words.push_back(word);
 for (int i = 0; i < words.size(); i++)
  cout << words[i] << endl;



 









你可能感兴趣的:(c++算法)