Question: Help! CIST 2371 Java Programming I LAB #6 - 50 Points Arrays 1.) Problem #1: (Arrays) Create a Class to store 100 integers in an

Help!
Help! CIST 2371 Java Programming I LAB #6 - 50 Points Arrays

CIST 2371 Java Programming I LAB #6 - 50 Points Arrays 1.) Problem #1: (Arrays) Create a Class to store 100 integers in an Array. Call your class "SimpleArray", and store it in a file called "SimpleArray.java. All code should go in the main() method. First declare an array of 100 integers. Use a for loop to store the numbers between 500 and 599 in the array. Then build a second loop to print out the data in this array. 2.) Problem #2: (Arrays) Modify your Fahr/Celsius program from Lab #4. This time, as you go through the loop, instead of printing the Fahrenheit and Celsius data out, store the values in 2 arrays; one array for Fahrenheit and one array for Celsius. After the first loop that stores the data completes, write another loop that will print out the 2 arrays of data. 3) Problem #3: Working with char arrays. Given a char array. build a method that will print the chars in the array out in reverse order. Call your class "Reverse3", and store it in a file called Reverse 3.java public static void main(....) { char name[] = {'S', 't', 'e', 'v', 'e' }; print out the name array. reverse 3(name); //will print out chars backwards } You build the reverse30 method

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!