Final answer:
The CSAssignment 2.1 involves creating a SumArrayClass to manage an integer array and a SumArrayClassTest to demonstrate its functionality. The SumArrayClass encapsulates the array and provides methods for input, output, and sum calculation without exposing the array to the test program directly.
Step-by-step explanation:
Creating the SumArrayClass
For the CSAssignment 2.1, the task involves writing a SumArrayClass to manage an array of integers and a test program named SumArrayClassTest. The SumArrayClass will use a private integer array, a constructor to initialize the array size, and several methods. The fillArray method will allow user input to populate the array, the printArray method will display the array contents, and the sumArray method will calculate the sum of the array elements. The SumArrayClassTest will then use these methods to demonstrate that the SumArrayClass is functioning correctly, without giving the test program direct access to the array, encapsulating the array management within the SumArrayClass.
Steps to Implement SumArrayClass
- Create a project named SumArray.
- Add a source file with main() method from the SumArray.java content.
- Write the SumArrayClass with a private integer array.
- Implement a constructor for array initialization.
- Create the fillArray, printArray, and sumArray methods.
Steps for the Test Program SumArrayClassTest
- Ask the user to specify the array size.
- Create an instance of the SumArrayClass.
- Invoke fillArray to collect user-input integers.
- Use printArray to show the array contents.
- Display the sum of the array elements with sumArray.