Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

PROGRAMMING ASSIGNMENT #3 Due: May 30, 2018 at 23:59 Iverson modification of Chapter 7, Programming Project #1, page 527 Additional explanations from the text authors:

PROGRAMMING ASSIGNMENT #3

Due: May 30, 2018 at 23:59

Iverson modification of Chapter 7, Programming Project #1, page 527

Additional explanations from the text authors: SumBigInts.pdf

SUBMIT SumBigInts.java

Warning: I've assigned this in past quarters, and other faculty have too over the years, lots of resources out there, but you must WRITE YOUR OWN CODE. Look at all the example you please, then write your own code. In addition, I change to the following specifications that will be strictly enforced:

1. Submit SumBigInts.java with a main method plus at least three other methods that help you solve this assignment in a well structured form.

2. Define "interactive" in the text as interacting with input from a File as used in test code below. So the provided main() below MUST work.

3. Use MAX_DIGITS to determine the length of int[ ] arrays. I will change this upon testing. Maybe just start with code provided below:

4. Don't forget // comments, indents, etc: Program Submission Requirements

// This program reads an input file that contains sequences of integers to

// be added together. The program reads them as Strings so that it can

// process large integers. Reset the constant DIGITS to allow it to handle

// larger integers.

import java.io.*;

import java.util.*;

public class SumBigInts {

public static final int MAX_DIGITS = 25;

public static void main(String[] args) throws FileNotFoundException {

Scanner input = new Scanner(new File("sum.txt"));

processFile(input);

} ...

// more methods follow for i/o and add and .....

}

And here's the test text file to read (I'll change this for grading) plus the expected output to System.out

sum.txt

Suggestions:

Feel free to look at the code from Oracle on how they do BigInteger, and for hints on how to proceed:

http://grepcode.com/file/repository.grepcode.com/java/root/jdk/openjdk/6-b14/java/math/BigInteger.java#1054

But remember:

  • DO NOT import BigInteger nor BigDecimal for your final answer, and
  • DO NOT use System.in for console input, just read a File, and
  • DO use online resources wisely, then close that window and write you own code.
image text in transcribed
Input file sum.txt 82384 204 435 22 31 12 999 483 28350 28345 39823 95689 234856 3482 55328 934803 7849323789 22398496 8940 729348690234239 3948692348692348693486235 5834938349234856234863423 32489 859320 542890432323 534322343298 432432 58903 34 82934 49802390432 8554389 4789432789 0 48372934287 0 8943242 7482343 0 4879023 3333333333 4723 3333333333 6642 3333333333 Output that should be produced 82384 82384 204 435 639 22 31 1265 999 483 1482 28350 + 28345 + 39823 + 95689 + 234856 + 3482 + 55328 + 934803 = 1420676 7849323789 22398496 8940 32489 8593207872623034 729348690234239 + 542890432323 + 534322343298 = 730425903009860 3948692348692348693486235 + 5834938349234856234863423 9783630697927204928349658 999999999999999999999999 + 432432 + 58903 + 34 1000000000000000000491368 82934 + 49802390432 + 8554389 + 4789432789 + 0 + 48372934287-102973394831 7482343 04879023 08943242 21304608 3333333333 + 4723 + 3333333333 + 6642 + 3333333333 10000011364 Total lines = 14

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions