#include <stdio.h> int main(void) { int i =1;int t =1; while (i<=5) { i++; t=t*i; } printf("这个数的阶乘为%d",t); return 0; }