阅读以下程序: #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

admin2009-01-15  37

问题 阅读以下程序:
#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[j];
if(i+j==2)s2=s2+a[j];
}
cout<<s1<<","<<s2<<endl;
}
则该程序的输出结果为【   】。

选项

答案18,10

解析
转载请注明原文地址:https://kaotiyun.com/show/Brkp777K
0

最新回复(0)