zdravim, nevim jestli jsem uplne blbej, ale proste nemuzu najit chybu v tomto kodu:
#include <iostream>
class Kocka //vytvori tridu Kocka
{
public:
Kocka(int inivek); //konstrukor
~Kocka(); //destruktor
private:
int jejiVek; //clenska prommena
};
Kocka::Kocka(int inivek); //zde to hlasi chybu
{
jejiVek = inivek;
}
Kocka::~Kocka; //destructor, zadna akce
{
}
int main()
{
Kocka Micka(5);
system("pause");
return 0;
}