Step by step learning
Which cause a compiler error?
int [ ][ ] scores = {2,7,6}, {9,3,45};
int[] scores = {3, 5, 7};
String cats[] = {"Fluffy", "Spot", "Zeus"};
boolean results[] = new boolean[]{true, false, true};
double array[] = {3, 5, 8};
Please log in or register to have a possibility to add comment.
Please log in or register to have a possibility to add comment.