recursive counting in c++

Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
mturner5
Date:
Mon Nov 07 08:34:45 2016 +0000
Commit message:
recursive

Changed in this revision

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/main.cpp	Mon Nov 07 08:34:45 2016 +0000
@@ -0,0 +1,21 @@
+#include "mbed.h"
+void backward_count(n, delta, min_num)
+{
+    cout << n;
+    if(n <= min_num) {
+        return 0;    
+    } else {
+        return backward_count(n-delta, delta, min_num);    
+    }
+}
+
+int main()
+{
+    number = 25;
+    increment = 2;
+    min_number = -5;
+    backward_count(number,increment, min_number);
+
+}
+
+main()
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Mon Nov 07 08:34:45 2016 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/9bcdf88f62b0
\ No newline at end of file