#include <stdio.h>
int main()
{
int a,b;
int j,m=0;
int c[m];
//comment1: Error.对数组进行定义时,不能用变量作为数组下标(中括号内容),即使是const int都不行,只能是常量表达式。
while(scanf("%d%d",&a,&b)!=EOF)
{
c[m]=a+b;
//printf("%d\n", c[m]);
//comment2: 如果你不写下面的for循环,你在这个位置加上这句也能输出数组内容。
m++;
}
j=0;
for( j; j<m; j++)
//comment3: 这是为了在完成数组中元素的输入后,对数组遍历从而打印数组内容。ps:看第二处注释
printf("%d\n",c[j]);
return 0;
}