5!(C)

#include<stdio.h>

int main()
{
int i,t;
t=1;
i=2;
while(i<=5)
{
t=t*i;
i++;
}
printf(“%d\n”,t);
return 0;
}

猜你喜欢

转载自blog.csdn.net/qq_41661800/article/details/81318055
c-5
C5