想了半天为什么不输出, 原来需要写输出语句输出结果,我以为return就能返回答案呢
#include<iostream>
#include<cstring>
#include<cstdio>
#include<algorithm>
using namespace std;
int f(int n)
{
if (n == 0) return 1;
if (n == 1) return 1;
return n * f(n - 1);
}
int main()
{
int n ;
scanf("%d", &n);
int x = f(n);
cout << x << endl;
return 0 ;
}
我真笨
hh 我开始也这样!😂
抓住大佬一枚!hhh
hh AcWing 大佬只有闫老师一个
@yxc