标签:names ++ ret 一个 include 时间 style code 为什么
发现自己的基础太不牢固了
#include<bits/stdc++.h> using namespace std; int cnt=0; int dfs(int x) { if(x>=100)return x; dfs(x+1); dfs(x+2); } int main() { cout<<dfs(1)<<endl; return 0; }
这一段代码,为什么需要运行这么长时间我都没有搞清楚
标签:names ++ ret 一个 include 时间 style code 为什么
原文地址:https://www.cnblogs.com/theda/p/14938841.html