用for语句写某个数的阶乘

#include

int main()

{
int i,s;

for(i=1;i<=5;i++){

s=s*i;

}

printf("%d",s);

你可能感兴趣的:(蓝桥杯,拓扑学,c语言)