3) How many values store in int
demo[4][5] array?
Answers
Answered by
0
Answer:
Here's a simple program, called ArrayDemo (in a .java source file), that creates the array, puts some values in it, and displays the values.
public class ArrayDemo {
public static void main(String[] args) {
int[] anArray; // declare an array of integers
anArray = new int[10]; // create an array of integers
// assign a value to each array element and print
for (int i = 0; i < anArray.length; i++) {
anArray[i] = i;
System.out.print(anArray[i] + " ");
}
System.out.println();
}
}
The output from this program is:
0 1 2 3 4 5 6 7 8 9
Explanation:
Similar questions