aboutsummaryrefslogtreecommitdiffstats
path: root/ee1301/wk3/lab3/fib.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ee1301/wk3/lab3/fib.cpp')
-rw-r--r--ee1301/wk3/lab3/fib.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/ee1301/wk3/lab3/fib.cpp b/ee1301/wk3/lab3/fib.cpp
new file mode 100644
index 0000000..57be3a2
--- /dev/null
+++ b/ee1301/wk3/lab3/fib.cpp
@@ -0,0 +1,21 @@
+#include <iostream>
+using namespace std;
+int main()
+{
+ unsigned long long fib1=0, fib2=1, count, fib3=1;
+ cout << "How many Fibonacci numbers should be computed? ";
+ cin >> count;
+ bool firstRun=true;
+ for (int i=1; i<(count+1); i++) {
+ if (!firstRun) { //The contents are run when i is not 1.
+ fib3=fib1+fib2;
+ fib1=fib2;
+ fib2=fib3;
+ }
+ firstRun=false;
+ cout << fib3 << " ";
+ if (i%10==0 && i!=0)
+ cout << endl;
+ }
+ cout << endl;
+}