Advertisement
Guest User

JEBAĆ DISA

a guest
Jan 29th, 2020
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. #include <iostream>
  2. #include <fstream>
  3. #include <string>
  4. /* run this program using the console pauser or add your own getch, system("pause") or input loop */
  5.  
  6. using namespace std;
  7. char imie;
  8. char nazwisko;
  9. int main(int argc, char** argv) {
  10. cout<<"podaj imie:";
  11. cin>>imie;
  12. cout<<"podaj nazwisko:";
  13. cin>>nazwisko;
  14. fstream plik;
  15. plik.open("wizytowka.txt",ios::out);
  16. plik<<imie;
  17. plik<<nazwisko;
  18.  
  19. return 0;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement