// a是一个二维数组,有2行,3列int[,] a = new int[2,3]{ {1,2,3}, {4,5,6}};// 取第1行,第3个元素int x = a[0,2]; //x的值为3// 修改第2行,第1个元素值a[1,0] = 100; //原来的值4被修改为100
用循环吧。数组a[],个数为n;s=0;for(i=0;i除此,没有其他方法。
int a[n],s;s=0;for(int i=0;i s+=a[i];