C语言编写10的阶乘

日期:2021-05-01 11:57:22 人气:1

C语言编写10的阶乘

#include"stdio.h"

main()

{inti,s=1;

for(i=10;i>=1;i--)

s=s*i;

printf("s=%d\n",s);

}

热门评论