0
whats the problem?
this code is to print a 2D array. but here i used a method, and it didn't work... can you tell me how to make it work? code: import java.util.*; public class Main { public static void main(String[] args) { String[][] my2D = {{"pizza" , "burger" , "donut"} , {"milkshake" , "coffee" , "water"} , {"nike" , "adidas" , "puma"}}; Main.diamantion(my2D); } public static void diamantion(int x){ for (int i = 0; i < 3; i++){ for (int j = 0; j < 3; j++){ System.out.print(x[i][j] + " "); } System.out.println(); } } }
2 Answers
+ 1
In the function diamantion , your arguments ask for an integer but in Main you are passing a 2D string array..
Also please put a link of your code instead of copy pasting it
https://code.sololearn.com/cMFRIAl97VJ3/?ref=app
Have a good day,
Äheyat
+ 1
Äheyat , thank you! have a good day