Advertisement
LukaszPanko

Zad2

May 31st, 2020
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.52 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. #include<fstream>
  4.  
  5. using namespace std;
  6.  
  7. int main()
  8. {
  9.     string imie;
  10.     string miejsce;
  11.     string nr;
  12.     ofstream zapis_do_pliku ("plik.txt", ios::app);
  13.     cout<<"Podaj swoje imie: ";
  14.     cin>>imie;
  15.     cout<<"Podaj swoje miejsce zamieszkania: ";
  16.     cin>>miejsce;
  17.     cout<<"Podaj swoj numer telefonu: ";
  18.     cin>>nr;
  19.     zapis_do_pliku<<"Imie: "<<imie<<endl;
  20.     zapis_do_pliku<<"Miejsce zamieszkania: "<<miejsce<<endl;
  21.     zapis_do_pliku<<"Numer telefonu: "<<nr<<endl;
  22.  
  23.  
  24.  return 0;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement