Guest User

Untitled

a guest
Jan 21st, 2016
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. fstream plik_wej;
  2. // tu sobie otworzysz plik i wgl...
  3. string linia_z_pliku;
  4. string slowo;
  5.  
  6. while (getline(plik_wej, linia_z_pliku)) {//linie
  7. istringstream podzial(linia_z_pliku);
  8. while (podzial >> slowo) {//wyrazy
  9. //funkcja
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment