Programm Intergerrechner

Dependencies:   Zahlen mbed

Files at this revision

API Documentation at this revision

Comitter:
miickno
Date:
Mon Jun 25 17:01:27 2018 +0000
Commit message:
Integerrechner; Library Zahhlen

Changed in this revision

Zahlen.lib Show annotated file Show diff for this revision Revisions of this file
main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed.bld Show annotated file Show diff for this revision Revisions of this file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Zahlen.lib	Mon Jun 25 17:01:27 2018 +0000
@@ -0,0 +1,1 @@
+https://os.mbed.com/users/miickno/code/Zahlen/#c446bfdf3c55
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Mon Jun 25 17:01:27 2018 +0000
@@ -0,0 +1,23 @@
+#include "mbed.h"
+#include "string.h"
+#include "Zahlen.h"
+
+
+Zahlen rechnen;
+
+int main() 
+{
+    while(1)
+    {
+    rechnen.eingabe1();
+    rechnen.eingabe2();
+    
+    rechnen.addieren();
+    rechnen.dividieren();
+    rechnen.multiplizieren();
+    rechnen.subtrahieren();
+    
+    rechnen.ausgabe();
+    wait_ms(6000);
+    }
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Mon Jun 25 17:01:27 2018 +0000
@@ -0,0 +1,1 @@
+https://os.mbed.com/users/mbed_official/code/mbed/builds/5aab5a7997ee
\ No newline at end of file