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.cpp42
1 files changed, 21 insertions, 21 deletions
diff --git a/ee1301/wk3/lab3/fib.cpp b/ee1301/wk3/lab3/fib.cpp
index 67ba8bb..57be3a2 100644
--- a/ee1301/wk3/lab3/fib.cpp
+++ b/ee1301/wk3/lab3/fib.cpp
@@ -1,21 +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;
-}
+#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;
+}