Hi guys! Ok so this is my first year in college and I am having a lot of trouble with my computer course which mostly consist of writing java programs. I am falling way behind in class and i have a mid term due next week. It is REALLY causing a lot of stress on me. I would usually go for extra help but I am super busy with mid term papers and studying. THANK YOU!
Please create 1 file called ArrayLab. In that file you will write methods that represent each one of the objectives below. When the methods are complete you will create the main method, create a new ArrayLab object and invoke each of the methods you created.
a.) In a method declare an array that stores the values from 1 to 10. Initialize and print the values using a single for loop.
b.) In a method declare an array that stores the names of your family. You should declare and initialize the values using the short hand method. Use a for loop to print out the values
c.) In a method declare an array that stores 4 lucky numbers. You should add the values long hand. You will need to use a for loop to print the values
d.) In a method declare a multidimensional array that will store the times tables up through 10. You will need to use 2 for loops to store the values and print them out