From f7a1296d353dea1f98b47d4baef87426ceadf6b5 Mon Sep 17 00:00:00 2001 From: zedarider Date: Fri, 26 Feb 2016 21:15:09 +0000 Subject: Organising into folders --- C++/Collatz.cpp | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 C++/Collatz.cpp (limited to 'C++/Collatz.cpp') diff --git a/C++/Collatz.cpp b/C++/Collatz.cpp new file mode 100644 index 0000000..5263710 --- /dev/null +++ b/C++/Collatz.cpp @@ -0,0 +1,34 @@ +#include +#include + +using namespace std; + +int main() { + int usrNum, usrNum1, usrNum2; + int count; + + cout << "Please Enter a range: "; + cin >> usrNum1 >> usrNum2; + + cout << "\nnumber\tsteps\n"; +// cout << usrNum1 << "\t" << usrNum2 << endl; + for(usrNum=usrNum1; usrNum<=usrNum2; usrNum++) { + count = 0; + int initNum = usrNum; + while(initNum > 1) { + if(initNum % 2 == 0) { + initNum = initNum / 2; + } + else { + initNum = initNum*3 + 1; + } + + count ++; + } + cout << usrNum << "\t" << count << "\t"; + for(int x = 0; x < count; x++) { + cout << "*"; + } + cout << endl; + } +} \ No newline at end of file -- cgit