[ Exercises | Chapter Index | Main Index ]

Solution for Programming Exercise 8.2


This page contains a sample solution to one of the exercises from Introduction to Programming Using Java.


Exercise 8.2:

As discussed in Section 8.1, values of type int are limited to 32 bits. Integers that are too large to be represented in 32 bits cannot be stored in an int variable. Java has a standard class, java.math.BigInteger, that addresses this problem. An object of type BigInteger is an integer that can be arbitrarily large. (The maximum size is limited only by the amount of memory available to the Java Virtual Machine.) Since BigIntegers are objects, they must be manipulated using instance methods from the BigInteger class. For example, you can't add two BigIntegers with the + operator. Instead, if N and M are variables that refer to BigIntegers, you can compute the sum of N and M with the function call N.add(M). The value returned by this function is a new BigInteger object that is equal to the sum of N and M.

The BigInteger class has a constructor new BigInteger(str), where str is a string. The string must represent an integer, such as "3" or "39849823783783283733". If the string does not represent a legal integer, then the constructor throws a NumberFormatException.

There are many instance methods in the BigInteger class. Here are a few that you will find useful for this exercise. Assume that N and M are variables of type BigInteger.

For this exercise, you should write a program that prints 3N+1 sequences with starting values specified by the user. In this version of the program, you should use BigIntegers to represent the terms in the sequence. You can read the user's input into a String with the TextIO.getln() function or with the nextLine() function of a Scanner. Use the input value to create the BigInteger object that represents the starting point of the 3N+1 sequence. Don't forget to catch and handle the NumberFormatException that will occur if the user's input is not a legal integer! The program should not end when that happens; it should just output an error message. You should also check that the input number is greater than zero.

If the user's input is legal, print out the 3N+1 sequence. Count the number of terms in the sequence, and print the count at the end of the sequence. Exit the program when the user inputs an empty line.


Discussion

My solution uses a subroutine, printThreeNSequence(N), to print out the 3N+1 sequence starting from the BigInteger, N. The subroutine assumes that N is not null and that it represents a value that is greater than one. Given these assumptions, the subroutine cannot generate any errors. (These preconditions are ensured by the main program which calls the subroutine, but I use assert statements to test the assumptions during debugging.) The only interesting aspect of the subroutine is that all operations on N must be performed using instance methods from the BigInteger class. For example, to multiply N by 2, I use a statement "N = N.multiply(TWO);", where TWO is a BigInteger that represents the integer 2. My program defines TWO as a constant, along with several other BigIntegers that represent values that I need:

static final BigInteger THREE = new BigInteger("3");
static final BigInteger ONE = new BigInteger("1");
static final BigInteger TWO = new BigInteger("2");

With these constants, the code for computing the next term in a 3N+1 sequence becomes:

if (N.testBit(0) == false) {
        // N is even.  Divide N by 2.
    N = N.divide(TWO);
}
else {
        // N is odd.  Multiply N by 3, then add 1.
    N = N.multiply(THREE);
    N = N.add(ONE);
}

You can find the complete subroutine in the solution that is given below. (Note that the two lines in the else part could be replaced by one line: N = N.multiply(THREE).add(ONE);)

In the main() routine, the user's input is read into a variable, line, of type String. The input is used to construct a BigInteger with the statement "N = new BigInteger(line);". Since this statement can produce a NumberFormatException, it is placed in a try statement that can catch and handle the error. The test "if (N.signum() == 1)" is used to make sure that N >= 1. The value of N.signum() is 1 if and only if N is a positive integer. Here is the loop form the main() routine that processes the user's input (where scanner is a Scanner that reads from System.in):

while (true) {
   System.out.println();
   System.out.println("Enter the starting value, or press return to end.");
   System.out.print("? ");
   line = scanner.nextLine().trim();
   if (line.length() == 0)
       break;
   try {
       N = new BigInteger(line);
       if (N.signum() == 1)
          printThreeNSequence(N);
       else
          System.out.println("Error:  The starting value cannot be less than or equal to zero.");
   }
   catch (NumberFormatException e) {
       System.out.println("Error:  \"" + line + "\" is not a legal integer.");
   }
}

Note that the user's input is read using "line = scanner.nextLine().trim(). The function trim() that is applied to the input string will remove any spaces that are at the start or the end of the string. In the constructor new BigInteger(line), no spaces are allowed in line, but if the user types a space or two followed by a legal number, I don't want my program to reject that as an error. Using the trim() command will allow spaces before and after an otherwise legal number. Using scanner.next() instead of scanner.nextLine() would be another way to ignore spaces, but it would make it impossible to end the program when the user enters an empty line because scanner.next() just skips empty lines while looking for the next non-blank token.


The Solution

import java.math.BigInteger;
import java.util.Scanner;

/** 
 * This program prints out 3N+1 sequences for starting values of N that
 * are entered by the user.  Since integers are represented as objects of
 * type BigInteger, it will work for arbitrarily large integers.  The
 * starting value specified by the user must be greater than zero.  The
 * program continues to read input from the user and print 3N+1 sequences
 * until the user inputs an empty line.  If the user's input is illegal,
 * the program will print an error message and continue.
 */
public class BigThreeN {
 
 
    private static final BigInteger THREE = new BigInteger("3");
    private static final BigInteger ONE = new BigInteger("1");
    private static final BigInteger TWO = new BigInteger("2");
    
    
    public static void main(String[] args) {
    
       Scanner scanner = new Scanner( System.in );  // for reading user's input.
    
       String line;   // A line of input from the user.
  
       BigInteger N;  // The starting point for the 3N+1 sequence,
                      //   as specified by the user.
       
       System.out.println("This program will print 3N+1 sequences for positive starting values");
       System.out.println("that you enter.  There is no pre-set limit on the number of");
       System.out.println("digits in the numbers that you enter.  The program will end when");
       System.out.println("you enter an empty line.");
       
       while (true) {
          System.out.println();
          System.out.println("Enter the starting value, or press return to end.");
          System.out.print("? ");
          line = scanner.nextLine().trim();
          if (line.length() == 0)
              break;
          try {
              N = new BigInteger(line);
              if (N.signum() == 1)
                 printThreeNSequence(N);
              else
                 System.out.println("Error:  The starting value cannot be less than or equal to zero.");
          }
          catch (NumberFormatException e) {
              System.out.println("Error:  \"" + line + "\" is not a legal integer.");
          }
       }
       
       System.out.println();
       System.out.println("OK.  Bye for now!");
    
    }  // end main()
    
    
    /**
     * Print the 3N+1 sequence starting from N, and count the number
     * of terms in the sequence.  It is assumed that N is not null and
     * that it is greater than zero.
     */
    private static void printThreeNSequence(BigInteger N) {
 
       assert N != null && N.signum() == 1 : "Illegal parameter value.";
 
       int count;  // The number of terms in the sequence.
       
       System.out.println();
       System.out.println("The 3N+1 sequence starting with " + N + " is:");
       System.out.println();
       
       System.out.println(N.toString());   // Print N as the first term of the sequence
       count = 1;
       
       while ( ! N.equals(ONE) ){   // Compute and print the next term
          if (N.testBit(0) == false) {
                  // N is even.  Divide N by 2.
              N = N.divide(TWO);
          }
          else {
                  // N is odd.  Multiply N by 3, then add 1.
              N = N.multiply(THREE);
              N = N.add(ONE);
          }
          System.out.println(N.toString());
          count++;
       }
 
       System.out.println();
       System.out.println("There were " + count + " terms in the sequence.");
 
    }  // end printThreeNSequence
    
    
} // end BigThreeN

[ Exercises | Chapter Index | Main Index ]