#include
#include
#include
#include
using namespace std;
class Utwor {
public:
string tytulUtworu;
string kompozytor;
int czasTrwaniaUtworu;
int numerUtworu;
Utwor (int n, int ct, string tytulUtworu, string kompozytor)
{
numerUtworu = n;
czasTrwaniaUtworu = ct;
this->tytulUtworu=tytulUtworu;
this->kompozytor=kompozytor;
}
void pokaz ()
{
cout<<"***"< cout<numerUtworu<<" - "<tytulUtworu< cout<<"Czas trwania: "< cout<<"Kompozytor: "< }
};
class Plyta {
public:
string tytul;
int czasTrwania;
int id;
vector lista;
Plyta (string tytul, int id)
{
this->tytul;
this->czasTrwania=0;
this->id=id;
lista.clear();
}
void dodaj (Utwor u)
{
lista.push_back(u);
this->czasTrwania+=u.czasTrwaniaUtworu;
}
void pokazZaw ()
{
cout<<"---------------------"< cout< cout<<"Lista utworow: "< int s=lista.size();
for(int i=0; i {
lista[i].pokaz();
}
cout<<"-------------"< }
};
int main(int argc, char *argv[])
{
Utwor maja(1, 358, "Pszczolka Maja", "Wodecki");
maja.pokaz ();
Utwor MIG(2, 825, "Pszczolka Zosia", "Wodecki");
MIG.pokaz ();
Utwor Kotek(2, 1024, "Wlazl kotek na plotek", "Ola z Ic");
Kotek.pokaz ();
Plyta p("Ona", 1);
p.dodaj(maja);
p.dodaj(MIG);
p.dodaj(Kotek);
p.pokazZaw ();
system("PAUSE");
return EXIT_SUCCESS;
}
Wyszukiwarka