COP 3804 Intermediate Java - project 1 : pgm1b_5COP3804java2 Professor: Michael Robinson e-mail : michael.robinson@cs.fiu.edu Web Page : cs.fiu.edu/~mrobi002 Program Purpose: To review Java 1 concepts, introduce and prepare for Java 2 topics. a - Using TERMINAL MODE ONLY in Windows, Linux or Apple create the program described below. b - Make sure that your program COMPILES AND RUNS without any warnings c - Follow my Java Programming Rules, located at: https://users.cs.fiu.edu/~mrobi002/includes/JAVA_programmingRules d - 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 }.......... *********************************************************************/ e - Program must be named: yourLastNameFirstLetterOfYourFirstNamePgm1.java ex: robinsonMpgm1.java f - 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: - 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 Program Purpose: - 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 (row+col) locations that are odd locations, display results - Create an algorithm that will add all the values in all (row-col) locations that are even locations, display results - Create an algorithm that will add all the values in all locations, display results 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.