空格在单行上分隔多个输入

时间:2012-12-26 12:24:56

标签: c++

5 1256 4323 7687 3244 5678
2 2334 7687
5 2334 5678 6547 9766 9543

我应该以上面的形式输入。每行中的第一个整数决定了后面的整数。由于第一个整数可以变化,我不知道是否可以使用'scanf'。

2 个答案:

答案 0 :(得分:3)

当然,您可以使用scanf执行此操作。

while (scanf("%d", &n) == 1) {
  row++;
  for (col = 0; col < n; col++)
    scanf("%d", &a[row][col]);
}

cin

大致相同
while (cin >> n) {
  row++;
  for (col = 0; col < n; col++)
    cin >> a[row][col];
}

更具体的例子,假设输入是最大N行。

int** a = new int*[N];
int row = -1; // not started yet
while (cin >> n) {
  row++;
  a[row] = new int[n];
  for (int col = 0; col < n; col++)
    cin >> a[row][col];
}

如果事先不知道N,我们也可以按照以下方式使用std::vector

vector<vector<int> > a;
while (cin >> n) {
  vector<int> line(n);
  for (int col = 0; col < n; col++)
    cin >> line[col];
  a.push_back(line);
}

答案 1 :(得分:0)

我永远不会理解为什么你不想在Stackoverflow.com上搜索!它被回答了很多次。例如 -

#include <iostream>
#include <sstream>
#include <fstream>
#include <string>

int main()
{
std::ifstream  data("test.txt");

std::string line;
while(std::getline(data,line))
{
    std::stringstream  lineStream(line);
    std::string        cell;
    while(std::getline(lineStream,cell,' '))
    {
        std::cout<<cell<<std::endl;

    }
  }
}