#include <iostream>
using namespace std;
void bucky()
{
cout << "qwert";
bucky();
}
int main()
{
bucky();
}
#include <iostream>
using namespace std;
int bucky(int x)
{
if(x==1)
{
return 1;
}
else
{
return x*bucky(x-1);
}
}
int main()
{
cout << bucky(5) << endl;
}
网友评论