tình hình là thế này:mình có thử đoạn code lấy dữ liệu từ một file text in ra màn hình trong file đó có tên và ngày sinh.khi lấy dữ liệu vs đoạn code này thì bị lỗi.mình hiểu là nó coi khoảng trắng là số 0.có cách nào lấy ra hết dữ liệu ko nhỉ?
#include<iostream>
#include<fstream>
#include<stdlib.h>
#include<string>
using namespace std;
main(){
ifstream f;
f.open("test.txt");
if(!f){
cout<<"khong the mo tep"<<endl;
exit(0);
}
int i=0,so;
string ten,
while(!f.eof()){
f>>ten;
cout<<ten;
i++;
}
system("pause");
}