#include<stdio.h> int main() { int i,t; //先声明变量的类型 t=1; i=2; //然后再赋初值 while(i<=5) { t=t*i; i=i+1; } printf("%d\n",t); return 0; //main函数中一般返回值为 0 }