Posted By: oremprakash |
3/6/2007 1:49:00 AM |
Reply To: saurab who posted...
|
|
public class Addition {
public static void main(String args[]) {
int sum = 0;
int nums[][] = new int[3][5];
// give nums some values
for (int i = 0; i
for (int j = 0; j
nums[i][j] = (i + 1) * (j + 1);
// use for-each for to display and sum the values
for (int x[] : nums) {
for (int y : x) {
System.out.println("Value is: " + y);
sum += y;
}
}
System.out.println("Summation: " + sum);
}
}
i hope this may be useful to u.....
dont copy the code and run...
analyse the code and try to do by ur own....
regards,
Prakash.M
|
|