填空题

有以下程序的输出结果是______。
#include<stdio.h>
main( )
int i,j,sum;
for(i=3;i>=1;i--)

sum=0;
for(j=1;j<=i;j++) sum+=i*j;

printf("%d\n",sum);

【参考答案】

A