如何读取.csv并保存不同的变量? C ++

时间:2015-08-17 21:19:24

标签: c++ csv matrix

这就是我目前所拥有的,但我需要将值保存在不同的变量上,并使用它们来比较不同的值。

文件格式如下:

学生姓名; 80; 90; 30

学生姓名2; 20; 30; 40

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

using namespace std;

int main(){


vector<string> saveData(10); //used to save names
int n1[10], n2[10], n3[10];  //saves grades
int x=0;

ifstream  fileRead("Estudiantes.csv");

    string line;

    while(getline(fileRead,line))
    {
        stringstream  strings(line);
        string split;

        while(getline(strings, split,','))
        {
            cout<<separador<<endl;
        }
    }
}

0 个答案:

没有答案