Advertisement
Guest User

Untitled

a guest
Oct 13th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. //hàm đọc thông tin của 1 người
  2. void Doc_File_Thong_Tin(ifstream &filein, People &p)
  3. {
  4. getline(filein, p.ten, ','); // doc du lieu den dau phay
  5. getline(filein, p.gioitinh,'\n');
  6. }
  7.  
  8. //hàm đọc thông tin sở thích của 1 người
  9. void Doc_File_So_Thich(ifstream &filein, Sothich &so)
  10. {
  11. getline(filein, so.stt, '-');// đọc dữ liệu đến dấu -
  12. getline(filein, so.loaisothich, '\n');
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement