diff options
Diffstat (limited to 'store/works/life/algorithm-experiment/1.1b.cpp')
-rw-r--r-- | store/works/life/algorithm-experiment/1.1b.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/store/works/life/algorithm-experiment/1.1b.cpp b/store/works/life/algorithm-experiment/1.1b.cpp new file mode 100644 index 0000000..c64c73e --- /dev/null +++ b/store/works/life/algorithm-experiment/1.1b.cpp @@ -0,0 +1,20 @@ +#include <iostream> + +int main() { + for (int i = 2; i <= 1000; i++) { + std::cout << i << ','; + + int n = i; + + int k = 0; + + while (n != 1) { + n = n % 2 ? n * 3 + 1 : n / 2; + k++; + } + + std::cout << k << '\n'; + } + + return 0; +}
\ No newline at end of file |