aboutsummaryrefslogtreecommitdiffstats
path: root/Collatz.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Collatz.cpp')
-rw-r--r--Collatz.cpp34
1 files changed, 0 insertions, 34 deletions
diff --git a/Collatz.cpp b/Collatz.cpp
deleted file mode 100644
index 5263710..0000000
--- a/Collatz.cpp
+++ /dev/null
@@ -1,34 +0,0 @@
-#include <iostream>
-#include <cmath>
-
-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