填空题

以下程序的运行结果是______。
#include<stdio.h>
void main()
char a=’A’,b=’E’;
int sum=1,i=1;
do
sum*=i;i++;
while(i<=b-a);
printf("%d",sum);

【参考答案】

X