โ Back to Loops
Question 342
Collatz Steps
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 with3 * n + 1. Use a loop to count how many steps this takes, and print the count followed by a newline. For input6the exact output is: 8
Expected Output:
8
Topics:
Loops
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.