Question: Hailstone sequence Given a positive integer n , the following rules will always create a sequence that ends with 1 , called the hailstone sequence:
Hailstone sequence
Given a positive integer n the following rules will always create a sequence that ends with called the hailstone sequence:
If n is even, divide it by two
If n is odd, multiply it by and add ien
Continue until n 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 ten integers, each separated by a tab character t are printed per line. End the last line of output with a new line endl
The output format can be achieved as follows:
cout n t;
Ex: If the input is:
The output is:
FIX MY CODE PLEASE, SOME INPUTS HAVE ISSUES
#include
using namespace std;
int main
int n count ;
cin n;
cout n t;
while n
if n
n ;
else
n n ;
cout n t;
count;
if count
cout endl;
cout endl;
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
