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, 0 insertions, 21 deletions
diff --git a/ee1301/wk3/lab3/fib.cpp b/ee1301/wk3/lab3/fib.cpp
deleted file mode 100644
index 57be3a2..0000000
--- a/ee1301/wk3/lab3/fib.cpp
+++ /dev/null
@@ -1,21 +0,0 @@
-#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;
-}