code của mình:
void grade10(const char* path)
ifstream file(path);
string trash, s1, s2;
double score, score1;
while (!file.eof()) {
string s;
getline(file, s);
getline (file, trash, ',');
getline (file, s1, ',');
getline (file, s2, ',');
getline (file, trash, ',');
file >> score >> trash >> score1 >> trash;
if (score1 == 10){
string ten = s1 + " " + s2;
cout << ten << endl;}
}
Khi chạy không ra đáp án đúng, tự debug mãi không được.