填空题

阅读以下程序: #include<iostream.h> void main() { static int a[][3]={9,7,5,3,1,2,4,6,8}; int i,j,s1=0,s2=0; for(i=0;i<3;i++) for(j=0;j<3;j++) { if(i==j)s1=sl+a[i][j]; if(i+j==2)s2=s2+a[i][j]; } cout<<s1<<","<<s2<<endl; } 则该程序的输出结果为 【15】

【参考答案】

AH,A0