COP 3804 Intermediate Java - project 1 : pgm1_6aCOP3804java2 Professor: Michael Robinson e-mail : michael.robinson@cs.fiu.edu Web Page : cs.fiu.edu/~mrobi002 a - Using Eclipse or terminal mode in Windows, Linux or Apple create the program described below. b - If you are using terminal mode, install Java JDK Make sure that your program does not have any warnings Java program: - At the beginning of your program add the following: /********************************************************************* Author : Your Name Course : Java section. Example Java-1, Java-2, Java-3, or Java-4 Professor : Michael Robinson Program # : Program Purpose/Description { A brief description of the program } Due Date : MM/DD/YYYY Certification: I hereby certify that this work is my own and none of it is the work of any other person. ..........{ your signature }.......... *********************************************************************/ - Program must be named: yourLastNameFirstLetterOfYourFirstNamePgm1.java ex: robinsonMpgm1.java - Make sure the program is properly documented and aligned uniformally, according to our "JAVA Programming Rules", discussed in class and located at: http://users.cis.fiu.edu/~mrobi002/includes/JAVA_programmingRules I will take points off if you do not follow the programming instructions. How to create java program: - If you are using terminal mode, create your program using an editor such as: In Windows : notepad In Linux : gedit, nano, pico, vi or vim - Compile and run this program using the following commands: to compile : javac robinsonMpgm1.java to run : java robinsonMpgm1 Purpose of this program: - Create a 10 x 10 two dimensional array of int data type - Load each index in the array with the addition of each (row + column)*2 location - Using System.out.printf display the content of each index, ALIGNED. - Create an algorithm that will add all the values in all top left to bottom right diagonal locations and print their total. - Create an algorithm that will add all the values in all top right to bottom left diagonal locations and print their total. - Print the addition of all values in each index in the array with labels ex: Top Left to Button Right Diagonal = ????. How: - In the main method declare the two dimension array. - From the main method, passing the two dimensions array, call a method named arrays - In the arrays method do the rest of the program Program submission: - Upload your source code to your Moodle account, and turn in your signed source code on printed and stappled paper.