Question: Write Code in C programming not c++ 6212b80cd027110?projector-18messagePartld-0.0 1. Pick a positive integer n as the start. 2. If n is even, divide it by

Write Code in C programming not c++
6212b80cd027110?projector-18messagePartld-0.0 1. Pick a positive integer n as the start. 2. If n is even, divide it by 2. 3. If n is odd, multiply it by 3 and add 1. 4. Continue this process until n is1 The number n will travel up and down but eventually end at 1 Write a program that takes a positive integer from the user, prints out the sequence starting at n and returns the number of steps in the sequence to reach 1. C:Users \zouja \Desktop PuzzleDebug Puzzle.exe lease enter n: 10 n10 is even, divide it by 2, which yields 5 ? 5 1s odd, multiply it by 3 and add 1, which yields 16 n16 is even. divide it by 2. which yields8 n8 is even. divide it by 2. which yields 4 n = 4 is even, divide it by 2, which yields 2 # 2 is even, divide it hy 2, which yields 1 1. the End? The total length of the sequence is
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
