โ Back to Loops
Question 311
Collatz Steps (while)
Collatz Steps (while)
Starting fromn = 6, count how many steps it takes to reach1using the Collatz rule: ifnis even, halve it; ifnis odd, replace it with3 * n + 1. Count each transformation. Then print: Steps: 8 The path is 6 -> 3 -> 10 -> 5 -> 16 -> 8 -> 4 -> 2 -> 1, which is 8 steps.
Expected Output:
Steps: 8
Topics:
Loops
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.