Computer science simple java programming
Project 4 CS152 Summer 2020
For this project, you will need to create 10 methods that will need to take into
consideration the requirements described below. Your methods should be called in the main method or referred to in other methods. You will create a main method that will run the methods in the order of your choosing. Your entire program will need to compile with no bugs whatsoever. If your program does not compile or results in incorrect outputs and results (as seen through your IDE’s console or through the construction of your code) points will be deducted. Total: 100 points Requirements:
- All 10 methods require the following (40 points): - Input parameters: At least one needs to be a 1D array and at least one needs
to have a 2D array. - Return statements
- Minimum of 1 method with a while-loop (10 points) - Minimum of 1 method with a for-loop (10 points) - Minimum of 1 method with a nested for-loop (should be combined with the 2D
array) (10 points) - Three methods that are called in another method (that is not the main method). - 1 recursive method (20 points) - Minimum of 1 method that changes the elements on an array (10 points) - Note: No method should be similar to any method seen in the lecture slides. You will
need to come up with your own methods for this project. Copying methods from the lecture slide will result in a zero for that method.