填空题

以下程序的输出结果是______。
#include<stdio.h>
main()
int i=10,j=0;
do
j=j+i;
i--;
while(i>5);
printf("%d\n",j);

【参考答案】

40