Question
correct the error to sum 4*4 array import java. util.Scanner; public class array{ public static void input(int mylist[][]){ Scanner input = new Scanner (System.in); for
correct the error to sum 4*4 array
import java. util.Scanner; public class array{
public static void input(int mylist[][]){ Scanner input = new Scanner (System.in);
for (int i = 0; i < mylist.length; i++) { for (int j = 0; j < mylist[i].length; j++) { mylist[i][j] = input.nextInt();
} } }
public static void print(int mylist[][]){
for (int i = 0; i < mylist.length; i++) { for (int j = 0; j < mylist[i].length; j++) { System.out.print(mylist[i][j]+" ");
System.out.println("sun is: "); int sum = 0; sum = sum + mylist[i][j]; System.out.print(mylist[i][j] + " "); } System.out.println(); }
public static void main(String[] args) {
int[][] mylist = new int[4][4];
System.out.print(mylist[i][j] + " "); input(mylist); print(mylist);
} }
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started