Question
a)Suppose that the first number of a sequence is x, where x is an integer. Define a0= x; an+1=an/2 if an is even; an+1= 3*an
a)Suppose that the first number of a sequence is x, where x is an integer. Define a0= x; an+1=an/2 if an is even; an+1= 3*an +1 if an is odd. Then there exists an integer K such that ak=1. Write a Program that prompts the user to input the value of x. The program outputs the integer K such that ak=1 and the numbers a0, a1, a2,.., ak.. (For example, if x=75, then K=14, and the numbers a0, a1, a2,.., a14, respectively, are 75,226,113,340,170,85,256,128,64,32,16,8,4,2,1. )
b)Enhance your program from part a by outputting the position of the largest number and the largest number of the sequence a0, a1, a2,.., ak.. (For example, the largest number of the sequence 75,226,113,340,170,85,256,128,64,32,16,8,4,2,1 is 340 and its position is 4. )
You can test your program for the following values of x: 75,111,678,732,873,2048 and 65535
I want code to be written in java programing
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started