Question: Java programming language import java.util.Arrays; class Main { public static void main(String[] args) { // Write a simple application to finish the assignments below //
Java programming language
import java.util.Arrays;
class Main { public static void main(String[] args) { // Write a simple application to finish the assignments below
// Assignment #1 // - Find a maximum value of an array of integers using a loop // - Print it out to the console int[] array = {2, 3, 4, 5, 56, 5, 43, 3}; int maxValue = 0; // Write the missing part here System.out.println("Assignment #1");
// Assignment #2 // - Print out all elements of an array one by onto the console // - You would need to create two loops in order to do so int[][] array2 = {{2, 3, 4, 5, 56, 5, 43, 3}, {2, 3, 4, 5, 65, 5, 43, 3}}; // Write the missing part here System.out.println("Assignment #2");
// Check the answers and submit your homework by clicking 'Submit' button at top right } }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
