TINF_Library_Zahlen
Revision 0:c446bfdf3c55, committed 2018-06-18
- Comitter:
- miickno
- Date:
- Mon Jun 18 17:40:05 2018 +0000
- Commit message:
- miickno;
Changed in this revision
Zahlen.cpp | Show annotated file Show diff for this revision Revisions of this file |
Zahlen.h | Show annotated file Show diff for this revision Revisions of this file |
diff -r 000000000000 -r c446bfdf3c55 Zahlen.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Zahlen.cpp Mon Jun 18 17:40:05 2018 +0000 @@ -0,0 +1,14 @@ +#include "mbed.h" +#include "Zahlen.h" + +void Zahlen :: ausgabe() +{ + printf("Zahl 1: %i\nZahl 2: %i\n\n", _zahl1, _zahl2); + printf("Addieren: %i\nSubtrahierten: %i\nMultiplizieren: %i\nDividieren: %i\n", _erga,_ergs,_ergm,_ergd); + printf("_\t_\t_\t_\t_\n\n"); +} + +void Zahlen ::eingabe1() + { scanf("%i",&_zahl1); } +void Zahlen ::eingabe2() + { scanf("%i", &_zahl2); } \ No newline at end of file
diff -r 000000000000 -r c446bfdf3c55 Zahlen.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Zahlen.h Mon Jun 18 17:40:05 2018 +0000 @@ -0,0 +1,32 @@ +#include "mbed.h" +#ifndef ZAHLEN_H +#define ZAHLEN_H + +class Zahlen{ + private: // Memebervariable + int _zahl1; + int _zahl2; + int _erga; + int _ergd; + int _ergm; + int _ergs; + + public: + + void eingabe1(); + + void eingabe2(); + + void addieren() + { _erga =_zahl1+_zahl2; } + void dividieren() + { _ergd=_zahl1/_zahl2; } + void multiplizieren() + { _ergm=_zahl1*_zahl2; } + void subtrahieren() + { _ergs=_zahl1-_zahl2; } + + void ausgabe(); +}; + +#endif \ No newline at end of file