Question: Section 8 . 2 - COMP B 1 1 : Progric ok / BAKERSFIELDCOLLEGECOMPB 1 1 MilesFall 2 0 2 4 / chapter / 8

Section 8.2- COMP B11: Progric
ok/BAKERSFIELDCOLLEGECOMPB11MilesFall2024/chapter/8/section/2
1: Programming Concepts and Methodology I home >8.2 : Programming Project #04B
8.2 Programming Project #04B
Given a positive integer n, the following rules will always create a sequence that ends with 1, called the hailstone sequence:
If n is even, divide it by 2
If n is odd, multiply it by 3 and add 1(i.e.3n+1)
Continue until is 1
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.
The output format can be achieved as follows:
system.out.print (n+"\t");
Ex: If the input is:
25
the output is:
\table[[25,76,38,19,58,29,88,44,22,11],[34,17,52,26,13,40,20,10,5,16],[8,4,2,1,,,,,,]]
\table[[LAB,],[ACTIvity,8.2.1: Programming Project #04B]]
LabProgram.java
Load default template.
import java.util. Scanner;
public class LabProgram
public static void main(String[] args)
Scanner scnr = new Scanner(
System.in);
Type your code here. *
Section 8 . 2 - COMP B 1 1 : Progric ok /

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!