CJCoding With Joseph

Collatz Steps

Read a positive integer from input. Repeatedly apply the Collatz rule until the number becomes 1: if it is even, halve it; if it is odd, replace it with 3 * n + 1. Use a loop to count how many steps this takes, and print the count followed by a newline. For input 6 the exact output is:

8

Expected Output:

8
Topics:
Loops
๐Ÿ“ฅ Auto-Input:
6\n
This input is automatically fed to your program's stdin
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.