那位大神能告诉我这是什么意思,计算机的,求1×2×3×4×5用C语言表示。 main() {int i,t; t=1; i=2; while(i<=5) {t=t*i; i=i+1; } printf(“%d”,t); }