3

ファイルからすべての整数を読み取って配列に入れようとしています。次の形式の整数を含む入力ファイルがあります。

3 74

74 1

1 74

8 76

基本的に、各行には数字、スペース、そして別の数字が含まれます。Java では Scanner メソッド nextInt() を使用してスペーシングを無視できることは知っていますが、C++ ではそのような関数は見つかりませんでした。

4

3 に答える 3

5
#include <fstream>
#include <iostream>
#include <vector>

int main()
{
  std::vector<int> arr;
  std::ifstream f("file.txt");
  int i;
  while (f >> i)
    arr.push_back(i);
}

または、標準アルゴリズムを使用して:

#include <algorithm>
#include <fstream>
#include <iterator>
#include <vector>

int main()
{
  std::vector<int> arr;
  std::ifstream f("file.txt");
  std::copy(
    std::istream_iterator<int>(f)
    , std::istream_iterator<int>()
    , std::back_inserter(arr)
  );
}
于 2013-06-21T17:56:54.403 に答える
1
int value;
while (std::cin >> value)
    std::cout << value << '\n';

一般に、ストリーム エクストラクタは空白をスキップし、その後のテキストを翻訳します。

于 2013-06-21T17:56:57.473 に答える
0
// reading a text file the most simple and straight forward way
#include <iostream>
#include <fstream>
#include <string>
#include <conio.h>

using namespace std;

int main () {
int a[100],i=0,x;
  ifstream myfile ("example.txt");
  if (myfile.is_open())  // if the file is found and can be opened
  {
    while ( !myfile.eof() ) //read if it is NOT the end of the file
    {

      myfile>>a[i++];// read the numbers from the text file...... it will automatically take care of the spaces :-)

    }
    myfile.close(); // close the stream
  }

  else cout << "Unable to open file";  // if the file can't be opened
  // display the contents
  int j=0;
  for(j=0;j<i;j++)
   {//enter code here
    cout<<a[j]<<" ";                 

 }
//getch();
  return 0;
}
于 2013-06-21T18:09:24.457 に答える