for (int k = 0; k < arr.length;k++)
arr[k] = 42;
int[] intArr = new int[100]; // Create an int arrayfor (int k = 0; k < intArr.length; k++) // Initialize the array
intArr[k] = (k+1)*(k+1);System.out.print("The first 100 squares are"); // Print heading
for (int k = 0; k < intArr.length; k++)
{ // Print the array
if (k % 10 == 0)
System.out.println(" "); // 10 elements per row
System.out.print( intArr[k] + " ");
} // for
Program Output:The first 100 squares are
1 4 9 16 25 36 49 64 81 100
121 144 169 196 225 256 289 324 361 400
441 484 529 576 625 676 729 784 841 900
961 1024 1089 1156 1225 1296 1369 1444 1521 1600
1681 1764 1849 1936 2025 2116 2209 2304 2401 2500
2601 2704 2809 2916 3025 3136 3249 3364 3481 3600
3721 3844 3969 4096 4225 4356 4489 4624 4761 4900
5041 5184 5329 5476 5625 5776 5929 6084 6241 6400
6561 6724 6889 7056 7225 7396 7569 7744 7921 8100
8281 8464 8649 8836 9025 9216 9409 9604 9801 10000
int largest
= Integer.MIN_VALUE; // largest will find the largest
number
for (int k = 0; k < arr.length; k++)
{
if (arr[k] > largest)
largest = arr[k];
}
Example:
- sort (array) - sorts the specified array. works for arrays of primitive types, Strings, and wrapper classes (Double, Integer, etc).
- sort(array, fromindex, toindex) - sorts the items in the array starting at the fromindex up to but not including the toindex.
- fill(array, value) - fills the array with the specified value
- fill(array, fromindex, toindex, value) - fills the array from fromindex up to but not including the toindex with the given value.
String[] names = {"Mary","Fred","Sally","Cindy"};
Arrays.sort(names); // sorts the entire array
Arrays.sort(names,0,2); // sorts just the first two entries
Arrays.fill(names,""); // fills the array with empty strings.
double rainfall[] = new
double[365];
double rainfall[][] =
new
double[12][31];
1.0 2.0 3.0
4.0 5.0
6.0 7.0 8.0 9.0