Question: 4 . 1 7 Program # 4 : Hailstone sequence C + + This lab will be available until June 2 9 th , 1
Program #: Hailstone sequence C
This lab will be available until June th: PM PDT
Given a positive integer the following rules will always create a sequence that ends with called the hailstone sequence:
If is even, divide it by two
If is odd, multiply it by and add ie
Continue until is
Write a program that reads an integer as input and prints the hailstone sequence starting with the integer entered. Format the output so
that five integers, each separated by a tab character are printed per line. End the output with a newline. DO NOT output a tab after the
last value on a line.
The output format can be achieved as follows:
cout ;
Ex: If the input is:
the output is:
Handling input error
If the user does not enter a positive integer, output an error message and ask them to reenter a positive integer. Keep doing this until they
enter a positive integer. Note is not a positive integer.
Ex: If the input is:
the output is:
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
