求 n! 不知道哪错 结果出来多是 1 郁闷啊
#include<iostream>using namespace std;
int palk(int x )
{int n ,s=1;
n=x;
while(n<1 )
{s = n * s;
n--;}
return s;
}
int main()
{
int x ,s;
cout<<"intput";
cin>>x;
s=palk(x);
cout<<s<<endl;
}
求 n! 不知道哪错 结果出来多是 1 郁闷啊