Wyszukiwanie liniowe
Ostatnio zmodyfikowano 2024-08-01 23:23
tBane |
» 2024-08-01 23:23:56 #include <iostream>
using namespace std;
class poczta { public: string nadawca, odbiorca, temat, tresc; void wczytaj(); void wypisz(); };
void wypisz( poczta & p ) { cout << "Nadawca : " << p.nadawca << endl; cout << " odbiorca : " << p.odbiorca << endl; cout << "temat : " << p.temat << endl; cout << "tresc : " << p.tresc << endl; }
void wczytaj( poczta & p ) { cout << "Podaj nadawce: "; cin >> p.nadawca; cout << "Podaj odbiorce: "; cin >> p.odbiorca; cin.ignore(); cout << "Podaj temat: "; getline( cin, p.temat ); cout << "Podaj tresc: "; getline( cin, p.tresc ); }
int main() { poczta p1; wczytaj( p1 ); wypisz( p1 ); return 0; }
|
|
1 « 2 » |