Question: Section 8 . 2 - COMP B 1 1 : Progric ok / BAKERSFIELDCOLLEGECOMPB 1 1 MilesFall 2 0 2 4 / chapter / 8
Section COMP B: Progric
okBAKERSFIELDCOLLEGECOMPBMilesFallchaptersection
: Programming Concepts and Methodology I home : Programming Project #B
Programming Project #B
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
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 ten integers, each separated by a tab character are printed per line.
The output format can be achieved as follows:
system.out.print t;
Ex: If the input is:
the output is:
table
tableLABACTIvity: Programming Project #B
LabProgram.java
Load default template.
import java.util. Scanner;
public class LabProgram
public static void mainString args
Scanner scnr new Scanner
System.in;
Type your code here.
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
