Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- struct osoba
- {
- string imie;
- string nazwisko;
- int wiek;
- };
- int main()
- {
- osoba os[3];
- os[0].imie="Jan";
- os[0].nazwisko="Kowalski";
- os[0].wiek=12;
- os[1].imie="Adam";
- os[1].nazwisko="Nowak";
- os[1].wiek=5;
- os[2].imie="Olaf";
- os[2].nazwisko="Nowicki";
- os[2].wiek=55;
- for(int i=0; i<3;i++)
- {
- cout<<os[i].imie<<" "<<os[i].nazwisko<<" "<<os[i].wiek<<endl;
- }
- //cout<<"Twoje imie to: "<<jan.imie<<endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement