RT......在调试时发现的
#include<cstdio> using namespace std; const int b=19; bool pdfind(int x,int loc) { if(x==b){ return 0; } if(loc<=10)pdfind(x+1,loc+1); } int main() { int c=pdfind(0,0); printf("%d",c); return 0; }
这是为啥qwq