Stefan Hutter
/
Hutter_6_10_2020
Aufgabe_1
Revision 4:0f310f0fa9ac, committed 2020-10-06
- Comitter:
- Hutzi
- Date:
- Tue Oct 06 16:56:36 2020 +0000
- Parent:
- 3:ee41300c3883
- Commit message:
- code 2
Changed in this revision
main.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/main.cpp Tue Oct 06 16:39:14 2020 +0000 +++ b/main.cpp Tue Oct 06 16:56:36 2020 +0000 @@ -8,25 +8,30 @@ public: - TestKlasse(double wert) : _messwert(wert) { - - _messwert=0; - } - - void gibAus(){ - printf("Messwert ist %f\n ",_messwert); - } - - - private: - double _messwert; + TestKlasse(int x, bool wahr) : _x(x), _wahr(wahr) { + _x=0; + _wahr=false; + } + + int getx(void) { + + return _x; + } + + private: + int _x; + bool _wahr; }; -TestKlasse ausgabe(15); + +TestKlasse ausgabe(15,true); int main() { - ausgabe.gibAus(); + int y; + y=ausgabe.getx(); + + printf("bei 15 passts: %d\n",y); }