how many arrays?
public class Sjak {
public static void main(String[] args) {
int[] ia, ib;
String[] dogs = {"gun","hot","sea"};
float[][] ff;
double[] da = new double[4];
}
}
Java Tutorial > Quizzes > Data Flow > how many arrays?public class Sjak {
public static void main(String[] args) {
int[] ia, ib;
String[] dogs = {"gun","hot","sea"};
float[][] ff;
double[] da = new double[4];
}
}