1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
#include <iostream>
#include <string>
using namespace std;
class udella
{
private:
char avtor[50];
char dello[50];
int god;
float cena;
char ponuduvac[50];
public:
udella(char* a=" ",char* d=" ", int g=0, float c=0; char* p=" ")
{
strcpy(avtor,a,49);
avtor[49]='\0';
strcpy(dello,d,49);
dello[49]='\0';
god=g;
cena=c;
strcpy(ponuduvac,p,49);
ponuduvac[49]='\0';
}
udella(const udella& u)
{
strcpy(avtor,u.avtor,49);
avtor[49]='\0';
strcpy(dello,u.dello,49);
dello[49]='\0';
god=u.god;
cena=u.cena;
strcpy(ponuduvac,u.ponuduvac,49);
ponuduvac[49]='\0';
}
};
int main()
{
char a[50];
char d[50];
int g;
fload c;
char p[50];
cin.get();
return 0;
}
|