赞
踩
#include<stdio.h> int main() { int i=1,m=2;//定义自变量i,t
while(m<=5)//while循环体,计算1*2*3*4*5 { i=i*m; m=m+1; } printf("%d\n",i);//输出结果 return 0; }