两个一维数组对应元素相加【C】


```c
#include <stdio.h>

int main()
{
	int a[10]={456, 324, 346, 5, 22234, 9234, 6709, 588, 555, 999};
	int b[10]={456, 324, 346, 5, 22234, 9234, 6709, 588, 555, 999};
	
	for(int i=0;i<=10-i;i++){
		a[i] = a[i]+b[i];
		if(i==10-i)break;
		a[10-i] = a[10-i]+b[10-i];
	}
	int x=0;
	while(x<10){
		printf("%d\n", a[x]);
		x++;
	}
	
   
   return 0;
}

上一篇:求最长上升子序列的长度(动态规划)


下一篇:数组遍历及其他方法