From 6c83506cb44b1d20f66df404f0b6468b0e291b6b Mon Sep 17 00:00:00 2001 From: RossTheRoss Date: Tue, 25 Jun 2019 17:55:13 -0500 Subject: Do a thing: --- ee1301/wk3/lab3/fib.cpp | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) (limited to 'ee1301/wk3/lab3/fib.cpp') 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 -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 +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; +} -- cgit v1.2.3