Question: in C please 4. 14 LAB: Hailstone sequence Given a positive integer n, the following rules will always create a sequence that ends with 1
4. 14 LAB: Hailstone sequence Given a positive integer n, the following rules will always create a sequence that ends with 1 , called the hallone sequence. - If n is even, divide it by 2 - If n is odd, multiply it by 3 and add 1 (ie. 3n+1) - Continue until nis 1 Write a program that reads an integer as input and prints the hailstone sequence starting with the integer enitered. Format the output so that ten integers, each separated by a tab character ( (t) ), are printed per line. The output format can be achieved as follows: printf(")d\t", n); Ex If the input is: 25 main.c Losd defaut template. \#Include \&stalo. h int main(vold) ( Se rype your code here. % return 0
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
