" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
#include <fstream>
using namespace std;
int age; string name1, name2;
int main() {
cout << "Podaj imię:"; cin >> name1; cout << "Podaj nazwisko:"; cin >> name2; cout << "Podaj wiek:"; cin >> age; fstream f; f.open("dane.txt" ios::out); f << name1 << endl << name2 << endl << age; f.close(); cout << "Pomyślnie wpisano dane!"; return 0;}
Przepraszam, za taki brak formatowania, chciałem wrzucić ten kod na pastebin, ale nie działało... :/