01/10/2018, 00:31
Cho e hỏi về vấn đề đọc file ạ
em có một file ghi nội dung như:
nguyen van a
1998
abcxyz
và chương trình của em:
#include<iostream>
#include<fstream>
#include<string>
using namespace std;
int main()
{
string ten, diachi, null1;
int nam;
ifstream f("INPUT.txt", ios::in);
getline(f, ten);
fflush(stdin);
f >> nam;
getline(f, null1)
getline(f, diachi);
cout << ten << endl;
cout << nam << endl;
cout << diachi << endl;
system("pause");
return 0;
}
em muốn hỏi là làm sao để không cần tạo ra 1 string null để loại bỏ được kí hiệu enter sau biến “nam” ạ, em search cách để delete kí tự enter trong file nhưng không tìm thấy
Bài liên quan