C++ Pilnie potrzebuje !!!! Stworzyć klasę bazową o nazwie uczeń która bedzie zawierała konstruktor i destruktor oraz klasową nazwisko na podstawie klasy bazowej uczeń. Stworzyć klase bazową skarbnik która będzie dziedziczyła klasową nazwisko oraz posiadała własną klasową oraz konstruktor i destruktor. W programie powołać obiekt klasy skarbnik oraz użyć konstruktora
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2025 KUDO.TIPS - All rights reserved.
#include<iostream>
#include<string>
#include<conio.h>
using namespace std;
class uczen
{
public:
string nazwisko, imie;
uczen(string n, string i);
uczen(){};
~uczen(){};
};
class skarbnik:public uczen
{
public:
float kwota;
skarbnik(string n, string i, float k);
skarbnik(){};
~skarbnik(){};
};
skarbnik::skarbnik(string n, string i, float k)
{
nazwisko=n;
imie=i;
kwota=k;
}
int main()
{
skarbnik a;
a = skarbnik("Jan","Kowalski",12);
cout << a.imie << " " << a.nazwisko << " " << a.kwota << endl;
getch();
return 0;
}